diff --git a/algorithms/learn/decision_tree/decision_tree.joblib b/algorithms/learn/decision_tree/decision_tree.joblib index 5ed6234..b80620c 100644 Binary files a/algorithms/learn/decision_tree/decision_tree.joblib and b/algorithms/learn/decision_tree/decision_tree.joblib differ diff --git a/algorithms/learn/decision_tree/decision_tree.py b/algorithms/learn/decision_tree/decision_tree.py index 70e1c93..c30be1e 100644 --- a/algorithms/learn/decision_tree/decision_tree.py +++ b/algorithms/learn/decision_tree/decision_tree.py @@ -1,17 +1,18 @@ import os import json -from matplotlib import pyplot from joblib import dump, load from sklearn import tree from sklearn.feature_extraction import DictVectorizer -from objects.mines.disarming.mine_parameters import MineParameters -from objects.mines.disarming.parameter_json import generate_data +from disarming.parameters.mine_parameters import MineParameters +from disarming.parameters.parameter_json import generate_data class DecisionTree: - def __init__(self, clf_source: str = None, vec_source: str = None): - if clf_source is not None and vec_source is not None: + def __init__(self, load_from_file: bool = False): + if load_from_file: + clf_source = r"algorithms/learn/decision_tree/decision_tree.joblib" + vec_source = r"algorithms/learn/decision_tree/dict_vectorizer.joblib" self.load(clf_source, vec_source) else: self.clf = None @@ -48,8 +49,8 @@ class DecisionTree: # fig.savefig("decistion_tree.png") def save(self): - dump(self.clf, 'decision_tree.joblib') - dump(self.vec, 'dict_vectorizer.joblib') + dump(self.clf, r'algorithms/learn/decision_tree/decision_tree.joblib') + dump(self.vec, r'algorithms/learn/decision_tree/dict_vectorizer.joblib') def load(self, clf_file, vec_file): self.clf = load(clf_file) @@ -84,7 +85,7 @@ class DecisionTree: if __name__ == "__main__": - # generate_data("training_set.txt", 12000) + generate_data("training_set.txt", 12000) decision_tree = DecisionTree() decision_tree.build("training_set.txt", 15) decision_tree.test() diff --git a/algorithms/learn/decision_tree/dict_vectorizer.joblib b/algorithms/learn/decision_tree/dict_vectorizer.joblib index 8ee3de3..99ebc1a 100644 Binary files a/algorithms/learn/decision_tree/dict_vectorizer.joblib and b/algorithms/learn/decision_tree/dict_vectorizer.joblib differ diff --git a/algorithms/learn/neural_network/neural_network.py b/algorithms/learn/neural_network/neural_network.py index cd0aa75..ea16ea2 100644 --- a/algorithms/learn/neural_network/neural_network.py +++ b/algorithms/learn/neural_network/neural_network.py @@ -16,14 +16,16 @@ class NNType(Enum): class NeuralNetwork: - def __init__(self, network_type: NNType, saved_model_path=None, classes_path=None, img_height=180, img_width=180): + def __init__(self, network_type: NNType, load_from_file: bool = False, img_height=180, img_width=180): self.type = network_type self.training_data_dir = pathlib.Path(fr"../../../resources/data/neural_network/{self.type.value[0]}/train") self.img_height = img_height self.img_width = img_width - if saved_model_path is not None and classes_path is not None: + if load_from_file: + saved_model_path = fr"algorithms/learn/neural_network/{self.type.value[0]}/saved_model.h5" + classes_path = fr"algorithms/learn/neural_network/{self.type.value[0]}/saved_model_classes.joblib" self.load(saved_model_path, classes_path) else: self.model = None @@ -113,10 +115,8 @@ class NeuralNetwork: predictions = self.model.predict(img_array) score = tf.nn.softmax(predictions[0]) - print( - "This image most likely belongs to {} with a {:.2f} percent confidence." - .format(self.class_names[np.argmax(score)], 100 * np.max(score)) - ) + # returns class, condifdence + return self.class_names[np.argmax(score)], 100 * np.max(score) if __name__ == "__main__": @@ -128,7 +128,7 @@ if __name__ == "__main__": # neural_network.save() # Loading a model from file: - neural_network = NeuralNetwork(NNType.SPECIFICITY, r"specificity/saved_model.h5", r"specificity/saved_model_classes.joblib") + neural_network = NeuralNetwork(NNType.SPECIFICITY, load_from_file=True) # Test image = r"../../../resources/data/neural_network/specificity/disarm/tanks/1-35-British-Tank-FV-214-Conqueror-MK-II-Amusing-Hobby-35A027-AH-35A027_b_0.JPG" diff --git a/assets/display_assets.py b/assets/display_assets.py index 1ec1788..b2c3d0c 100644 --- a/assets/display_assets.py +++ b/assets/display_assets.py @@ -3,9 +3,9 @@ import pygame import project_constants as const from assets import asset_constants as asset -from objects.mines.mine_models.standard_mine import StandardMine -from objects.mines.mine_models.chained_mine import ChainedMine -from objects.mines.mine_models.time_mine import TimeMine +from objects.mine_models.standard_mine import StandardMine +from objects.mine_models.chained_mine import ChainedMine +from objects.mine_models.time_mine import TimeMine # ================================= # diff --git a/disarm_popup/__init__.py b/disarming/__init__.py similarity index 100% rename from disarm_popup/__init__.py rename to disarming/__init__.py diff --git a/disarming/disarming_handler.py b/disarming/disarming_handler.py new file mode 100644 index 0000000..d20ee2d --- /dev/null +++ b/disarming/disarming_handler.py @@ -0,0 +1,85 @@ +import os +import random + +from disarming.parameters.hash_function import SeriesHash, SpecificityHash +from objects.mine_models.mine import Mine +from algorithms.learn.decision_tree.decision_tree import DecisionTree +from algorithms.learn.neural_network.neural_network import NNType, NeuralNetwork + +SERIES_IMAGES_PATH = r"resources/data/neural_network/series/disarm" +SPECIFICITY_IMAGES_PATH = r"resources/data/neural_network/specificity/disarm" + +class_to_series = \ + {SeriesHash[name].value[2]: SeriesHash[name].value[1] for name, _ in SeriesHash.__members__.items()} + +class_to_specificity = \ + {SpecificityHash[name].value[2]: SpecificityHash[name].value[1] for name, _ in SpecificityHash.__members__.items()} + + +class DisarmingHandler: + def __init__(self, mine: Mine): + self.mine = mine + self.mine_params = dict() + + self.series_img = None + self.specificity_img = None + + self.recognized_series = None + self.recognized_specificity = None + + self.correct_wire = None + self.chosen_wire = None + + self._set_mine_params() + self._set_correct_wire() + + def _set_mine_params(self): + self.mine_params = self.mine.investigate() + + def _set_correct_wire(self): + self.correct_wire = self.mine.wire + + def get_mine_params(self): + return [self.mine_params["mine_type"], self.mine_params["weight"], self.mine_params["danger_cls"], + self.mine_params["indicator"], self.mine_params["series"], self.mine_params["specificity"]] + + def pick_series_image(self): + series_class = SeriesHash[self.mine_params["series"].upper().replace(" ", "_")].value[2] + imgs_dir = os.path.join(SERIES_IMAGES_PATH, series_class) + + self.series_img = os.path.join( + imgs_dir, random.choice([x for x in os.listdir(imgs_dir) if os.path.isfile(os.path.join(imgs_dir, x))])) + return self.series_img + + def pick_specificity_image(self): + specificity_class = SpecificityHash[self.mine_params["specificity"].upper().replace(" ", "_")].value[2] + + imgs_dir = os.path.join(SPECIFICITY_IMAGES_PATH, specificity_class) + + self.specificity_img = os.path.join( + imgs_dir, random.choice([x for x in os.listdir(imgs_dir) if os.path.isfile(os.path.join(imgs_dir, x))])) + + return self.specificity_img + + def recognize_series(self): + nn = NeuralNetwork(NNType.SERIES, load_from_file=True) + answer, confidence = nn.get_answer(self.series_img) + self.recognized_series = class_to_series[answer] + + return self.recognized_series, self.mine_params["series"] == self.recognized_series + + def recognize_specificity(self): + nn = NeuralNetwork(NNType.SPECIFICITY, load_from_file=True) + answer, confidence = nn.get_answer(self.specificity_img) + self.recognized_specificity = class_to_specificity[answer] + + return self.recognized_specificity, self.mine_params["specificity"] == self.recognized_specificity + + def choose_wire(self): + dt = DecisionTree(load_from_file=True) + self.chosen_wire = dt.get_answer(self.mine_params)[0] + + return self.chosen_wire + + def defuse(self): + return self.mine.disarm(self.chosen_wire) diff --git a/objects/mines/__init__.py b/disarming/parameters/__init__.py similarity index 100% rename from objects/mines/__init__.py rename to disarming/parameters/__init__.py diff --git a/objects/mines/disarming/hash_function.py b/disarming/parameters/hash_function.py similarity index 82% rename from objects/mines/disarming/hash_function.py rename to disarming/parameters/hash_function.py index eaf6663..fea0d47 100644 --- a/objects/mines/disarming/hash_function.py +++ b/disarming/parameters/hash_function.py @@ -23,14 +23,10 @@ class DangerClassHash(Enum): class SeriesHash(Enum): - TCH_2990TONER = 128, "TCH 2990toner" - TCH_2990INKJET = 110, "TCH 2990inkjet" - TVY_2400H = 100, "TVY 2400h" - SWX_5000 = 80, "SWX 5000" - SWX_4000 = 50, "SWX 4000" - WORKHORSE_3200 = 30, "WORKHORSE 3200" - FX_500 = 15, "FX 500" - TVY_2400 = 0, "TVY 2400" + TCH_2990TONER = 128, "TCH 2990toner", "T" + SWX_5000 = 80, "SWX 5000", "S" + WORKHORSE_3200 = 30, "WORKHORSE 3200", "W" + FX_500 = 15, "FX 500", "F" class IndicatorHash(Enum): @@ -42,13 +38,9 @@ class IndicatorHash(Enum): class SpecificityHash(Enum): - ANTI_AIRCRAFT = 55, "anti aircraft" - ANTI_PERSONNEL = 43, "anti personnel" - DEPTH_MINE = 37, "depth mine" - ANTI_TANK = 26, "anti tank" - PROXIMITY_MINE = 18, "proximity mine" - PRESSURE_MINE = 9, "pressure mine" - FRAGMENTATION_MINE = 0, "fragmentation mine" + ANTI_AIRCRAFT = 55, "anti aircraft", "planes" + DEPTH_MINE = 37, "depth mine", "ships" + ANTI_TANK = 26, "anti tank", "tanks" class WeightHash(Enum): diff --git a/objects/mines/disarming/mine_parameters.py b/disarming/parameters/mine_parameters.py similarity index 96% rename from objects/mines/disarming/mine_parameters.py rename to disarming/parameters/mine_parameters.py index f645c71..c49caf6 100644 --- a/objects/mines/disarming/mine_parameters.py +++ b/disarming/parameters/mine_parameters.py @@ -1,5 +1,5 @@ import random -from objects.mines.disarming import hash_function as hf +from disarming.parameters import hash_function as hf class MineParameters: diff --git a/objects/mines/disarming/parameter_json.py b/disarming/parameters/parameter_json.py similarity index 88% rename from objects/mines/disarming/parameter_json.py rename to disarming/parameters/parameter_json.py index 465d262..6bfcc12 100644 --- a/objects/mines/disarming/parameter_json.py +++ b/disarming/parameters/parameter_json.py @@ -1,10 +1,10 @@ import json -import objects.mines.disarming.mine_parameters as param +import disarming.parameters.mine_parameters as param import os import project_constants as const # this module is self contained, used to generate a json file -DIR_DATA = os.path.join(const.ROOT_DIR, "resources", "data") +DIR_DATA = os.path.join(const.ROOT_DIR, "resources", "data", "decision_tree") # just to show, how mine parameters works diff --git a/disarm_popup/popup.py b/disarming/popup.py similarity index 89% rename from disarm_popup/popup.py rename to disarming/popup.py index b1d79d7..9f2f7c0 100644 --- a/disarm_popup/popup.py +++ b/disarming/popup.py @@ -1,8 +1,10 @@ import pygame import pygame_gui + from project_constants import SCREEN_WIDTH, SCREEN_HEIGHT, V_NAME_OF_WINDOW from assets.asset_constants import ASSET_CONCRETE - +from objects.mine_models.mine import Mine +from disarming.disarming_handler import DisarmingHandler # =========== # # == const == # @@ -77,7 +79,7 @@ class SampleWindow: # main attributes self.running = True self.clock = pygame.time.Clock() - self.manager = pygame_gui.UIManager(screen_size, 'theme.json') # TODO : change theme path + self.manager = pygame_gui.UIManager(screen_size, 'disarming/theme.json') # TODO : change theme path # main attributes def gui(): @@ -501,49 +503,76 @@ class SampleWindow: # == run == # # ========= # - def run(self): + def run(self, mine: Mine): + timed_event = pygame.USEREVENT + 1 + pygame.time.set_timer(timed_event, 5000) + + step = 0 + handler = DisarmingHandler(mine) while self.running: time_delta = self.clock.tick(60) / 1000.0 - keystate = pygame.key.get_pressed() - - # all events except QUIT are for testing for event in pygame.event.get(): if event.type == pygame.QUIT: self.running = False - if keystate[pygame.K_a]: - self.show_params("hello", "yello", "gel", "jello", "yum", "hello") - if keystate[pygame.K_s]: - self.show_series("workhorse 3200wx", True) - if keystate[pygame.K_d]: - self.show_spec("anti aircraft", False) - if keystate[pygame.K_f]: - self.show_cable_calculated("red") - if keystate[pygame.K_g]: - self.show_cable_chosen("blue") - if keystate[pygame.K_q]: - self.show_pic_series(ASSET_CONCRETE) - if keystate[pygame.K_w]: - self.show_pic_spec(ASSET_CONCRETE) + if event.type == timed_event: + if step == 0: + params = handler.get_mine_params() + self.show_params(params[0], params[1], params[2], params[3], params[4], params[5]) + elif step == 1: + self.show_cable_calculated(handler.correct_wire) + elif step == 2: + + # TODO: + img = pygame.transform.scale( + pygame.image.load(handler.pick_series_image()), + (1080, 1080) + ) + + self.show_pic_series(img) + elif step == 3: + + # TODO: + img = pygame.transform.scale( + pygame.image.load(handler.pick_specificity_image()), + (60, 60) + ) + + self.show_pic_spec(img) + elif step == 4: + answer, is_correct = handler.recognize_series() + self.show_series(answer, is_correct) + elif step == 5: + answer, is_correct = handler.recognize_specificity() + self.show_spec(answer, is_correct) + elif step == 6: + self.show_cable_chosen(handler.choose_wire()) + else: + self.running = False + + step += 1 self.manager.update(time_delta) self.window_surface.blit(self.background, (0, 0)) self.manager.draw_ui(self.window_surface) pygame.display.update() + return handler.defuse() -def disarming_popup(): +def disarming_popup(mine: Mine = None): # run the pop-up app = SampleWindow() - app.run() + result = app.run(mine) # bring display back to normal pygame.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT)) pygame.display.set_caption(V_NAME_OF_WINDOW) + return result + if __name__ == '__main__': pygame.init() diff --git a/disarm_popup/theme.json b/disarming/theme.json similarity index 100% rename from disarm_popup/theme.json rename to disarming/theme.json diff --git a/game.py b/game.py index 18588e4..e732a45 100644 --- a/game.py +++ b/game.py @@ -7,7 +7,7 @@ from algorithms.search import a_star from minefield import Minefield -from objects.mines.mine_models.time_mine import TimeMine +from objects.mine_models.time_mine import TimeMine from ui.ui_components_manager import UiComponentsManager from ui.text_box import TextBox diff --git a/json_generator.py b/json_generator.py index dfae3c6..bb5bea4 100644 --- a/json_generator.py +++ b/json_generator.py @@ -7,9 +7,9 @@ import project_constants as const from objects.tile import Tile # import mine models -from objects.mines.mine_models.standard_mine import StandardMine -from objects.mines.mine_models.time_mine import TimeMine -from objects.mines.mine_models.chained_mine import ChainedMine +from objects.mine_models.standard_mine import StandardMine +from objects.mine_models.time_mine import TimeMine +from objects.mine_models.chained_mine import ChainedMine class JsonGenerator: diff --git a/minefield.py b/minefield.py index 60dd74a..fd50e21 100644 --- a/minefield.py +++ b/minefield.py @@ -1,6 +1,6 @@ import project_constants as const from objects import tile as tl, agent as ag -from objects.mines.mine_models.time_mine import TimeMine +from objects.mine_models.time_mine import TimeMine import json_generator as jg diff --git a/objects/agent.py b/objects/agent.py index c376506..6b156ac 100644 --- a/objects/agent.py +++ b/objects/agent.py @@ -3,6 +3,8 @@ from assets import asset_constants as asset import json from time import sleep from pygame import transform + +import disarming.popup as popup from algorithms.learn.decision_tree.decision_tree import DecisionTree @@ -21,21 +23,16 @@ class Agent: self.row, self.column = int(self.row), int(self.column) self.position = [self.row, self.column] self.on_screen_coordinates = const.get_tile_coordinates(tuple(self.position)) - self.decision_tree = DecisionTree(const.ROOT_DIR + "/algorithms/learn/decision_tree/decision_tree.joblib", - const.ROOT_DIR + "/algorithms/learn/decision_tree/dict_vectorizer.joblib") self.direction = const.Direction(data["agents_initial_state"]["direction"]) self.rotation_angle = -const.Direction(self.direction).value * 90 self.going_forward = False self.rotating_left = False self.rotating_right = False - def defuse_a_mine(self, mine): - mine_params = mine.investigate() - chosen_wire = self.decision_tree.get_answer(mine_params) - # TODO temporarily printing chosen wire - print("agent's chosen wire: " + str(chosen_wire[0])) - sleep(3) - return mine.disarm(chosen_wire) + @staticmethod + def defuse_a_mine(mine): + is_success = popup.disarming_popup(mine) + return is_success def update_and_draw(self, window, delta_time, minefield): self.update(delta_time, minefield) diff --git a/objects/mines/disarming/__init__.py b/objects/mine_models/__init__.py similarity index 100% rename from objects/mines/disarming/__init__.py rename to objects/mine_models/__init__.py diff --git a/objects/mines/mine_models/chained_mine.py b/objects/mine_models/chained_mine.py similarity index 90% rename from objects/mines/mine_models/chained_mine.py rename to objects/mine_models/chained_mine.py index c7ce597..8de019b 100644 --- a/objects/mines/mine_models/chained_mine.py +++ b/objects/mine_models/chained_mine.py @@ -2,7 +2,7 @@ from __future__ import annotations from .mine import Mine -from objects.mines.disarming.hash_function import TypeHash +from disarming.parameters.hash_function import TypeHash class ChainedMine(Mine): diff --git a/objects/mines/mine_models/mine.py b/objects/mine_models/mine.py similarity index 81% rename from objects/mines/mine_models/mine.py rename to objects/mine_models/mine.py index 1926896..23d65f7 100644 --- a/objects/mines/mine_models/mine.py +++ b/objects/mine_models/mine.py @@ -4,7 +4,7 @@ from abc import ABC, abstractmethod # type hints from typing import Tuple -from objects.mines.disarming.mine_parameters import MineParameters +from disarming.parameters.mine_parameters import MineParameters # Mine cannot be instantiated # all abstract methods must be implemented in derived classes @@ -34,7 +34,4 @@ class Mine(ABC): del mine_parameters["wire"] self.wire = wire - # TODO temporarily printing parameters and right wire - print("parameters:", mine_parameters, "\nright wire: " + wire) - return mine_parameters diff --git a/objects/mines/mine_models/standard_mine.py b/objects/mine_models/standard_mine.py similarity index 84% rename from objects/mines/mine_models/standard_mine.py rename to objects/mine_models/standard_mine.py index 7951248..d9e285b 100644 --- a/objects/mines/mine_models/standard_mine.py +++ b/objects/mine_models/standard_mine.py @@ -1,5 +1,5 @@ from .mine import Mine -from objects.mines.disarming.hash_function import TypeHash +from disarming.parameters.hash_function import TypeHash class StandardMine(Mine): diff --git a/objects/mines/mine_models/time_mine.py b/objects/mine_models/time_mine.py similarity index 86% rename from objects/mines/mine_models/time_mine.py rename to objects/mine_models/time_mine.py index 71ce8ed..10ad349 100644 --- a/objects/mines/mine_models/time_mine.py +++ b/objects/mine_models/time_mine.py @@ -1,5 +1,5 @@ from .mine import Mine -from objects.mines.disarming.hash_function import TypeHash +from disarming.parameters.hash_function import TypeHash class TimeMine(Mine): diff --git a/objects/mines/mine_models/__init__.py b/objects/mines/mine_models/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/resources/data/decision_tree/training_set.txt b/resources/data/decision_tree/training_set.txt index 7d23cb0..809c12b 100644 --- a/resources/data/decision_tree/training_set.txt +++ b/resources/data/decision_tree/training_set.txt @@ -1,12000 +1,5400 @@ -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} {"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} {"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "green", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "green", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} {"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "proximity mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "fragmentation mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "green", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} {"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} {"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "fragmentation mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "pressure mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti personnel", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "proximity mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400h", "specificity": "anti personnel", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} {"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400h", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "pressure mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "fragmentation mine", "indicator": "red", "weight": "total average", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "proximity mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti personnel", "indicator": "white", "weight": "bread crumb", "wire": "green"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "proximity mine", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti personnel", "indicator": "blue", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "proximity mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "green", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti personnel", "indicator": "green", "weight": "total average", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TVY 2400h", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "white", "weight": "total average", "wire": "green"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "pressure mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti personnel", "indicator": "blue", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "white", "weight": "extra large", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "yellow", "weight": "total average", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TVY 2400", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 4000", "specificity": "pressure mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti personnel", "indicator": "white", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 4000", "specificity": "anti personnel", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "total average", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "anti personnel", "indicator": "yellow", "weight": "extra large", "wire": "green"} -{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "proximity mine", "indicator": "blue", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TVY 2400h", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "proximity mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti personnel", "indicator": "white", "weight": "slim fit", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "total average", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TVY 2400", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990inkjet", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} -{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "fragmentation mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "proximity mine", "indicator": "green", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "big bang", "series": "TVY 2400", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TVY 2400", "specificity": "pressure mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti personnel", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} -{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990inkjet", "specificity": "pressure mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 4000", "specificity": "fragmentation mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "proximity mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} -{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 4000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "pressure mine", "indicator": "green", "weight": "extra large", "wire": "blue"} -{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TVY 2400h", "specificity": "fragmentation mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} -{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990inkjet", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} {"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} {"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"}