diff --git a/algorithms/learn/decision_tree/decision_tree.joblib b/algorithms/learn/decision_tree/decision_tree.joblib index b80620c..da2dd67 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 c30be1e..4b93c1e 100644 --- a/algorithms/learn/decision_tree/decision_tree.py +++ b/algorithms/learn/decision_tree/decision_tree.py @@ -49,8 +49,8 @@ class DecisionTree: # fig.savefig("decistion_tree.png") def save(self): - dump(self.clf, r'algorithms/learn/decision_tree/decision_tree.joblib') - dump(self.vec, r'algorithms/learn/decision_tree/dict_vectorizer.joblib') + dump(self.clf, 'decision_tree.joblib') + dump(self.vec, 'dict_vectorizer.joblib') def load(self, clf_file, vec_file): self.clf = load(clf_file) @@ -85,7 +85,7 @@ class DecisionTree: if __name__ == "__main__": - generate_data("training_set.txt", 12000) + generate_data("training_set.txt", 4500) 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 99ebc1a..be25e12 100644 Binary files a/algorithms/learn/decision_tree/dict_vectorizer.joblib and b/algorithms/learn/decision_tree/dict_vectorizer.joblib differ diff --git a/disarming/disarming_handler.py b/disarming/disarming_handler.py index d20ee2d..f081c19 100644 --- a/disarming/disarming_handler.py +++ b/disarming/disarming_handler.py @@ -1,4 +1,5 @@ import os +import copy import random from disarming.parameters.hash_function import SeriesHash, SpecificityHash @@ -77,7 +78,11 @@ class DisarmingHandler: def choose_wire(self): dt = DecisionTree(load_from_file=True) - self.chosen_wire = dt.get_answer(self.mine_params)[0] + agent_params = copy.deepcopy(self.mine_params) + agent_params["series"] = self.recognized_series + agent_params["specificity"] = self.recognized_specificity + + self.chosen_wire = dt.get_answer(agent_params)[0] return self.chosen_wire diff --git a/disarming/parameters/hash_function.py b/disarming/parameters/hash_function.py index fea0d47..251ccc0 100644 --- a/disarming/parameters/hash_function.py +++ b/disarming/parameters/hash_function.py @@ -5,6 +5,9 @@ class Wire(Enum): BLUE = 1, "blue" GREEN = 2, "green" RED = 3, "red" + YELLOW = 4, "yellow" + WHITE = 5, "white" + PURPLE = 6, "purple" class TypeHash(Enum): @@ -23,10 +26,10 @@ class DangerClassHash(Enum): class SeriesHash(Enum): - TCH_2990TONER = 128, "TCH 2990toner", "T" - SWX_5000 = 80, "SWX 5000", "S" - WORKHORSE_3200 = 30, "WORKHORSE 3200", "W" - FX_500 = 15, "FX 500", "F" + TCH_2990TONER = 220, "TCH 2990toner", "T" + SWX_5000 = 168, "SWX 5000", "S" + WORKHORSE_3200 = 94, "WORKHORSE 3200", "W" + FX_500 = 1, "FX 500", "F" class IndicatorHash(Enum): @@ -38,9 +41,9 @@ class IndicatorHash(Enum): class SpecificityHash(Enum): - ANTI_AIRCRAFT = 55, "anti aircraft", "planes" - DEPTH_MINE = 37, "depth mine", "ships" - ANTI_TANK = 26, "anti tank", "tanks" + ANTI_AIRCRAFT = 512, "anti aircraft", "planes" + DEPTH_MINE = 256, "depth mine", "ships" + ANTI_TANK = 16, "anti tank", "tanks" class WeightHash(Enum): @@ -60,10 +63,16 @@ MAX_VALUE = max([elem.value[0] for elem in TypeHash]) \ def _get_wire_color(hash_sum): - if hash_sum < 0.43 * MAX_VALUE: + if hash_sum < 0.20 * MAX_VALUE: return Wire.BLUE - elif hash_sum <= 0.56 * MAX_VALUE: + elif hash_sum <= 0.38 * MAX_VALUE: return Wire.GREEN + elif hash_sum <= 0.50 * MAX_VALUE: + return Wire.YELLOW + elif hash_sum <= 0.60 * MAX_VALUE: + return Wire.WHITE + elif hash_sum <= 0.80 * MAX_VALUE: + return Wire.PURPLE else: return Wire.RED diff --git a/disarming/theme.json b/disarming/theme.json index 24921bf..d6bf27a 100644 --- a/disarming/theme.json +++ b/disarming/theme.json @@ -71,6 +71,27 @@ { "dark_bg": "#804e46" } + }, + "yellow": + { + "colours": + { + "dark_bg": "#7d803e" + } + }, + "purple": + { + "colours": + { + "dark_bg": "#733c78" + } + }, + "white": + { + "colours": + { + "dark_bg": "#7d7d7d" + } } } diff --git a/resources/data/decision_tree/training_set.txt b/resources/data/decision_tree/training_set.txt index 809c12b..3957c05 100644 --- a/resources/data/decision_tree/training_set.txt +++ b/resources/data/decision_tree/training_set.txt @@ -1,5400 +1,4500 @@ -{"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": "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": "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": "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": "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": "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": "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": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "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": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "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": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "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": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} {"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": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} {"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": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"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": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "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": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "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": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "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 tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "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 aircraft", "indicator": "blue", "weight": "slim fit", "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": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "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": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "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": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "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": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "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": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "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": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "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": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"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": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "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": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"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": "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": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "time", "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 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "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": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "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": "ginormous", "wire": "purple"} +{"mine_type": "standard", "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": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "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": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "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": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"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": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "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": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "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": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "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": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "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": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "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": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "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": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "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": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"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": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "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": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "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": "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": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"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": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"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": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"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": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "white"} {"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": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "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": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"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": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"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": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "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": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "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": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "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": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"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": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "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": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "white"} +{"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": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"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": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "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": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "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": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} {"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": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "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": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "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": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"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": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "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": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "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": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "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": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "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": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"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": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "purple"} {"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": "almost pierces through paper", "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": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"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": "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": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "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": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "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": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "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": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "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": "red", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"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": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "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": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "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 tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "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": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"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": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"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": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"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": "big bang", "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": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"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": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "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": "yellow", "weight": "slim fit", "wire": "red"} +{"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": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"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": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "white"} +{"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": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "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": "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": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "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": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "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": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "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": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "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": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"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": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "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": "time", "danger_cls": "almost pierces through paper", "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 aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"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": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "purple"} +{"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": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"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": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "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": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"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": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "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": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "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": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"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": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "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": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "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": "green"} +{"mine_type": "time", "danger_cls": "big bang", "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": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"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": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "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": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "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": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "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": "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": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"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": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "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": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "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": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "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": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "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": "red", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"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": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "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": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "white"} +{"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": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"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": "yellow", "weight": "extra large", "wire": "yellow"} +{"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": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"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": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "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": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"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": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "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": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "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": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "white"} +{"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": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "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": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "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": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "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": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "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": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"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": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"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": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "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": "blue", "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": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"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": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"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": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "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": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"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": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"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": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "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": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"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": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "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": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"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": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "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": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"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": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "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": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"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": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"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": "anti tank", "indicator": "green", "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": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "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 aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"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": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "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": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "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": "SWX 5000", "specificity": "anti tank", "indicator": "green", "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": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"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": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "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": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"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": "cherry bomb", "series": "TCH 2990toner", "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": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "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": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"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": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"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": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "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": "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": "casual devastator", "series": "SWX 5000", "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": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "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 tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"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": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "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": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"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": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"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": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"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": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"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": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "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": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "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": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "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": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"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": "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": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "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": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "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": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"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": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "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": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "white"} +{"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": "TCH 2990toner", "specificity": "anti aircraft", "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": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "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": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"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": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "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": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "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": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "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 tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"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": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"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": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "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": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "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": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"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 tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"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": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"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": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"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": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"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": "WORKHORSE 3200", "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": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"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": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "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": "yellow", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "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": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"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": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "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": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"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": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "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": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "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": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "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": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "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": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "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": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "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": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "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": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"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": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "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 aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"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 2990toner", "specificity": "anti aircraft", "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": "purple"} +{"mine_type": "time", "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": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "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": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "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": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "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": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"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": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"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": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"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": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "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": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "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": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "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": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"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": "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": "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": "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": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "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": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "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": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "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": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "white"} +{"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": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "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": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "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": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"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": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"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": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"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": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"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": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "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": "bread crumb", "wire": "white"} +{"mine_type": "time", "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": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "white"} +{"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": "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": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"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": "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": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "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": "WORKHORSE 3200", "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": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"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": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"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": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "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": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "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": "purple"} +{"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 tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "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": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "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": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"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": "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": "depth mine", "indicator": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "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": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "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 aircraft", "indicator": "red", "weight": "bread crumb", "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": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "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": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "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": "bread crumb", "wire": "yellow"} +{"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": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"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": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "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": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"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": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "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": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "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": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "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": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "white"} +{"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": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"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": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"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": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"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": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "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": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"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": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "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": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "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 aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "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": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"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": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "white"} +{"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": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "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": "extra large", "wire": "blue"} +{"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": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "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 aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "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": "anti tank", "indicator": "green", "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": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"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": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "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": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "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": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"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": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"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": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "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": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"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": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "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": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "white"} +{"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": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"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": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"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": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"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": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"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": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "time", "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": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "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": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "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": "green", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"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": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "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": "extra large", "wire": "yellow"} +{"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": "anti aircraft", "indicator": "white", "weight": "extra large", "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": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "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": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "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": "red", "weight": "ginormous", "wire": "yellow"} +{"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": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "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": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "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": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "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": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "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": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "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": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"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": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"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": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "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": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"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": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"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": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "white"} +{"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": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"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": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "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": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"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": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"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": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "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": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "white"} +{"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": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "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 aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "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": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "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": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"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": "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": "anti tank", "indicator": "green", "weight": "total average", "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": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "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": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "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": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"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": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"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": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "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 aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "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": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "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": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "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": "yellow"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "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": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"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": "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 aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"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": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "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": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"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": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "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": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"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": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "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 tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "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": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "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": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "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": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "purple"} +{"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": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"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": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "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": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"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": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"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": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"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 tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "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": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"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": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "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": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "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": "white", "weight": "extra large", "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": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "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": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "purple"} +{"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": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"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": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"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": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"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": "TCH 2990toner", "specificity": "anti aircraft", "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": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"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": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"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": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "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": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"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": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "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": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "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": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "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": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "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": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "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": "anti tank", "indicator": "white", "weight": "bread crumb", "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": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "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": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "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": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "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": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "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": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "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": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "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": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "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 aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "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": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"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": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"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": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"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": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "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": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "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": "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": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"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": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"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": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "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": "depth mine", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "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": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"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": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"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": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"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": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "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": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"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": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"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": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"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": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "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": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"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": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "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": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "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": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"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": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "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": "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": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"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": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "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": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"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": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "white"} +{"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": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"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": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"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": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "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": "green", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"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": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "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": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "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": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "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": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"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": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "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": "big bang", "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": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "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": "blue", "weight": "slim fit", "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": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"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": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "white"} +{"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": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"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": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "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": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"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": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"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": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"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": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"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": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "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": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"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": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"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": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "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": "white"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "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": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "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": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"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": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "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": "blue", "weight": "total average", "wire": "red"} +{"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": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"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": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "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": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "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": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "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": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "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": "radioactive", "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": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"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": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "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": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"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": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "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": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "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": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "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": "white", "weight": "bread crumb", "wire": "green"} +{"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": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "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": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "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": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"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": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "white"} +{"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": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "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": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "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": "green", "weight": "total average", "wire": "purple"} +{"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": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"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": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "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": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "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": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "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": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"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": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "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": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"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": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "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 aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "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": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"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": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"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": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "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": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"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": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "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": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "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": "red", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "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 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"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": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"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": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"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": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "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": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"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": "blue", "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": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"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": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"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": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "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": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "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": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "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 aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "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": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "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": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"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": "casual devastator", "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 tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "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": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"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": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"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": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "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 aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"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": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "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": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "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": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "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": "ginormous", "wire": "green"} +{"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": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"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": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "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": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"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": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "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": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "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": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"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": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "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": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"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": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"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": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "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": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "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": "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": "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": "white", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "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": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "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": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "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": "white", "weight": "bread crumb", "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": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"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": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"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": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "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": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"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": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "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 aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "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": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"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": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"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": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"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": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "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": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"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": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "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": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"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": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"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": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"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": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "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": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "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": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "white"} +{"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": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"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": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "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": "red", "weight": "ginormous", "wire": "purple"} +{"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": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "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": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "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": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"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": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"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": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "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": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth 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": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "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": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"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": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"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": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "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": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "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": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"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": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"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": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "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 tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"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 aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "white"} +{"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": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "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": "slim fit", "wire": "purple"} +{"mine_type": "standard", "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 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"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": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "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": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "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": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"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": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "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": "anti aircraft", "indicator": "red", "weight": "total average", "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": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "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": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"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": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"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": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "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": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"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": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "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": "WORKHORSE 3200", "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": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "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": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"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": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "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": "depth mine", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "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": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"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": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "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": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "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": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "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": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"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": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "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": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"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": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "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": "big bang", "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 tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"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": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"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": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "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": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"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": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "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": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "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 tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"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": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"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": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "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": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"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": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "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": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "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": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "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": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "white"} +{"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": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "white"} +{"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": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"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": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "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": "yellow"} +{"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": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "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": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "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": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"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": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "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 aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "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": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"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 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "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": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "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": "green", "weight": "total average", "wire": "yellow"} +{"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": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"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": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"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": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "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": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "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": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "blue"} +{"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": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "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": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"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": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "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": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "white"} +{"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": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"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": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"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": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"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": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "time", "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": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"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": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"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": "almost pierces through paper", "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": "red", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"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": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "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": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"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": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"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": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "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": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"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": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"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": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"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": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "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": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"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": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "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": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"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": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "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": "standard", "danger_cls": "big bang", "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": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"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": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"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": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "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": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "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": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"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": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"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": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "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": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "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": "green"} +{"mine_type": "chained", "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": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "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": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "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": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "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": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"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": "radioactive", "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 tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"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": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"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": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "white"} +{"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": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "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": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "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": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "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": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "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": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "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": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "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": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"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": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "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": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"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": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"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": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"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": "casual devastator", "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": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "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": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"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": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "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": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "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": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"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": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "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": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "white"} +{"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": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "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": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"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": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "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": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "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": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"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": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "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": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"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": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "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": "SWX 5000", "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": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"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": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"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": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "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": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "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": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "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": "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": "green", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "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": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"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": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"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": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"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": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "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 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"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": "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": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "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": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "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 aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "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 tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "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": "bread crumb", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"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": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "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": "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": "yellow", "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": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "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": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"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": "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": "depth mine", "indicator": "red", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "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": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"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": "white", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"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": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "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": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "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": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"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": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"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": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "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": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "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": "green", "weight": "ginormous", "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": "SWX 5000", "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": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "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 aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "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": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "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": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "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": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "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": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"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": "almost pierces through paper", "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": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "purple"} +{"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": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"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": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"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": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"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": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "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": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"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": "almost pierces through paper", "series": "SWX 5000", "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": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"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": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"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": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "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": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "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": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "red"} +{"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": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "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": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "red", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "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": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"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": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"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": "radioactive", "series": "SWX 5000", "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": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "red", "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": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "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 aircraft", "indicator": "blue", "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": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"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": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "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": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "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": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "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": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "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": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "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": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "yellow", "weight": "total average", "wire": "purple"} +{"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": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "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": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "red"} +{"mine_type": "standard", "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": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"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": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "red"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "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": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "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": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "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": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"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": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "casual devastator", "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": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "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": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "blue"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "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": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "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": "green", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "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": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"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": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "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": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "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": "green"} +{"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": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "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": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"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": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"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": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "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": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "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": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"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": "weapon of mass destruction", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "bread crumb", "wire": "white"} +{"mine_type": "time", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "red"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "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": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "slim fit", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "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": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "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 aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "total average", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "weight": "ginormous", "wire": "red"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "ginormous", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "green", "weight": "extra large", "wire": "yellow"} +{"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": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "red"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "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": "time", "danger_cls": "radioactive", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "bread crumb", "wire": "blue"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "red"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "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 tank", "indicator": "yellow", "weight": "bread crumb", "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": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "yellow", "weight": "slim fit", "wire": "red"} +{"mine_type": "time", "danger_cls": "big bang", "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": "red", "weight": "bread crumb", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"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": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "green", "weight": "ginormous", "wire": "red"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "blue"} +{"mine_type": "standard", "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": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "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": "green", "weight": "ginormous", "wire": "white"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"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": "cherry bomb", "series": "SWX 5000", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "white"} +{"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": "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": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "anti aircraft", "indicator": "blue", "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": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "green"} +{"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": "depth mine", "indicator": "green", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"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": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "white", "weight": "ginormous", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "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": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "red", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "time", "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 tank", "indicator": "blue", "weight": "extra large", "wire": "green"} +{"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": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "white"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "slim fit", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "extra large", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "radioactive", "series": "FX 500", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "bread crumb", "wire": "white"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "green"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "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": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "white"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "yellow", "weight": "ginormous", "wire": "purple"} +{"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": "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": "TCH 2990toner", "specificity": "anti tank", "indicator": "green", "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": "red"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "green", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "radioactive", "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 tank", "indicator": "white", "weight": "slim fit", "wire": "green"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "total average", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "slim fit", "wire": "green"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "green", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "SWX 5000", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "green"} +{"mine_type": "time", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "yellow", "weight": "extra large", "wire": "red"} +{"mine_type": "standard", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "white"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"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": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "white", "weight": "total average", "wire": "purple"} +{"mine_type": "time", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti tank", "indicator": "blue", "weight": "slim fit", "wire": "blue"} +{"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": "TCH 2990toner", "specificity": "anti tank", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"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": "SWX 5000", "specificity": "anti tank", "indicator": "red", "weight": "extra large", "wire": "green"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "total average", "wire": "white"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "cherry bomb", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "white"} +{"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": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "extra large", "wire": "green"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "FX 500", "specificity": "anti aircraft", "indicator": "green", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "casual devastator", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "purple"} +{"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": "radioactive", "series": "TCH 2990toner", "specificity": "depth mine", "indicator": "blue", "weight": "bread crumb", "wire": "purple"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "red", "weight": "bread crumb", "wire": "white"} +{"mine_type": "chained", "danger_cls": "weapon of mass destruction", "series": "SWX 5000", "specificity": "anti tank", "indicator": "white", "weight": "total average", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "yellow", "weight": "ginormous", "wire": "red"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "SWX 5000", "specificity": "depth mine", "indicator": "green", "weight": "ginormous", "wire": "white"} +{"mine_type": "time", "danger_cls": "cherry bomb", "series": "SWX 5000", "specificity": "anti aircraft", "indicator": "white", "weight": "bread crumb", "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": "weapon of mass destruction", "series": "SWX 5000", "specificity": "depth mine", "indicator": "yellow", "weight": "extra large", "wire": "white"} +{"mine_type": "time", "danger_cls": "radioactive", "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": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "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 tank", "indicator": "white", "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": "chained", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "blue", "weight": "ginormous", "wire": "yellow"} +{"mine_type": "standard", "danger_cls": "casual devastator", "series": "WORKHORSE 3200", "specificity": "anti tank", "indicator": "green", "weight": "total average", "wire": "blue"} +{"mine_type": "standard", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "green"} +{"mine_type": "standard", "danger_cls": "big bang", "series": "TCH 2990toner", "specificity": "anti tank", "indicator": "blue", "weight": "bread crumb", "wire": "green"} +{"mine_type": "standard", "danger_cls": "cherry bomb", "series": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "red", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "big bang", "series": "FX 500", "specificity": "anti aircraft", "indicator": "blue", "weight": "slim fit", "wire": "purple"} +{"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": "WORKHORSE 3200", "specificity": "anti aircraft", "indicator": "green", "weight": "extra large", "wire": "purple"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "anti tank", "indicator": "red", "weight": "ginormous", "wire": "blue"} +{"mine_type": "time", "danger_cls": "weapon of mass destruction", "series": "FX 500", "specificity": "depth mine", "indicator": "yellow", "weight": "slim fit", "wire": "yellow"} +{"mine_type": "chained", "danger_cls": "almost pierces through paper", "series": "WORKHORSE 3200", "specificity": "depth mine", "indicator": "yellow", "weight": "total average", "wire": "yellow"} +{"mine_type": "time", "danger_cls": "radioactive", "series": "SWX 5000", "specificity": "depth mine", "indicator": "blue", "weight": "extra large", "wire": "purple"} +{"mine_type": "time", "danger_cls": "almost pierces through paper", "series": "FX 500", "specificity": "depth mine", "indicator": "white", "weight": "ginormous", "wire": "yellow"}