From 27d57d0c039e814bd7d0892f692b125eacab85e3 Mon Sep 17 00:00:00 2001 From: issy16 Date: Wed, 11 Dec 2024 14:37:00 -0800 Subject: [PATCH 1/8] start of transfer heuristic --- Backend/Classes/Pathfinder.py | 16 ++++++++++++++++ backend.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/Backend/Classes/Pathfinder.py b/Backend/Classes/Pathfinder.py index d36e2e5..615275e 100644 --- a/Backend/Classes/Pathfinder.py +++ b/Backend/Classes/Pathfinder.py @@ -315,8 +315,19 @@ def transfer(self): def transfer_helper(self): + i = 0 while self.open_set: f_cost, g_cost, path,_, state = heapq.heappop(self.open_set) + + if (i==0): + + unload_list_copy = state.unload_list[:] + load_list_copy = state.load_list[:] + #print("load_list_copy:", load_list_copy) + #print("unload_list_copy:", unload_list_copy) + i+=1 + + if not state.unload_list and not state.load_list: @@ -345,6 +356,11 @@ def transfer_helper(self): return None def transfer_heuristic(self, state): + """Heuristic for transfer, return the estimate cost for the rest of the task to finish + 1. Sum the Manhattan distance for the rest of the unload to (8,0) + 2. Sum the Manhattan distance for the rest of the loading items from truck to the nearest available slots + """ + return 0 def get_containers(self, grid): diff --git a/backend.py b/backend.py index 95b551c..6991435 100644 --- a/backend.py +++ b/backend.py @@ -15,7 +15,7 @@ def main(): print("Quitting program.") break - i = 1 + i = 4 manifest_name = f"ShipCase{i}.txt" manifest_data = upload_manifest(manifest_name) From c6a3a5a452af94228f17bfd811e669004501cc0b Mon Sep 17 00:00:00 2001 From: issy16 Date: Wed, 11 Dec 2024 17:35:53 -0800 Subject: [PATCH 2/8] add transfer_heuristic --- Backend/Classes/Grid.py | 20 +++++++++++++++++- Backend/Classes/Pathfinder.py | 38 ++++++++++++++++++++--------------- 2 files changed, 41 insertions(+), 17 deletions(-) diff --git a/Backend/Classes/Grid.py b/Backend/Classes/Grid.py index d081d19..618ee7a 100644 --- a/Backend/Classes/Grid.py +++ b/Backend/Classes/Grid.py @@ -207,6 +207,25 @@ def get_nearest_slot_on_other_side(self, row, col, target_side): break return nearest_slot, min_distance + + def get_distance_to_nearest_available_slot(self, pos1): + """ + Finds the Manhattan distance to the nearest available slot from a given position (pos1). + """ + min_distance = float('inf') + pos = (8,0) + + for j in range(self.columns): + for i in range(self.rows): + slot = self.slot[i][j] + if slot.state == 1: + distance = abs(pos1[0] - i) + abs(pos1[1] - j) + if distance < min_distance: + min_distance = distance + pos = (i,j) + + break + return min_distance, pos def getPossibleMoves(self, buffer= None): """ @@ -421,7 +440,6 @@ def get_possible_transfer_moves(self): possible_moves = [] # Handle load if self.load_list: # Check if there are items to load - #name, weight = self.load_list[0] # Pick the first item to load valid_slots = self.get_valid_slots_position_for_loading() # Find all valid slots for target_position in valid_slots: move = Movement(from_slot=(-1,-1), to_slot=target_position) diff --git a/Backend/Classes/Pathfinder.py b/Backend/Classes/Pathfinder.py index 615275e..9f6ba9f 100644 --- a/Backend/Classes/Pathfinder.py +++ b/Backend/Classes/Pathfinder.py @@ -318,17 +318,7 @@ def transfer_helper(self): i = 0 while self.open_set: f_cost, g_cost, path,_, state = heapq.heappop(self.open_set) - - if (i==0): - - unload_list_copy = state.unload_list[:] - load_list_copy = state.load_list[:] - #print("load_list_copy:", load_list_copy) - #print("unload_list_copy:", unload_list_copy) - i+=1 - - - + if not state.unload_list and not state.load_list: current_grid = self.start_state @@ -345,6 +335,7 @@ def transfer_helper(self): crane_to_start_cost = state.calulate_transfer_path_cost(state.crane_position, move.from_slot) move_cost = state.calulate_transfer_path_cost(move.from_slot, move.to_slot) new_g_cost = g_cost + crane_to_start_cost + move_cost + h_cost = self.transfer_heuristic(child_state) new_f_cost += new_g_cost + h_cost move.cost = crane_to_start_cost + move_cost @@ -357,12 +348,27 @@ def transfer_helper(self): def transfer_heuristic(self, state): """Heuristic for transfer, return the estimate cost for the rest of the task to finish - 1. Sum the Manhattan distance for the rest of the unload to (8,0) - 2. Sum the Manhattan distance for the rest of the loading items from truck to the nearest available slots + 1. Sum the Manhattan distance for unloading to truck + 2. Sum the Manhattan distance for loading items from truck to the nearest available slots """ - - return 0 - + grid_copy = copy.deepcopy(state) # Create a deep copy of the state + + load_cost = 0 + unload_cost = 0 + + while grid_copy.load_list: + pos_1 = (8, 0) + min_distance, to_slot = grid_copy.get_distance_to_nearest_available_slot(pos_1) + load_cost += min_distance + grid_copy.load_container(to_slot) + + + for container in grid_copy.unload_list: + unload_cost += (8 - container.row) + container.col + + cost = 0.5*load_cost + unload_cost + return cost + def get_containers(self, grid): containers = grid.left_containers.union(grid.right_containers) # containers = [] From b684255b7cf7213a0205e3d33c213e2c8add4908 Mon Sep 17 00:00:00 2001 From: issy16 Date: Thu, 12 Dec 2024 16:58:05 -0800 Subject: [PATCH 3/8] add test cases --- 21Containers.txt | 88 ++++++++++++++++++++++++++++++++ 22Containers.txt | 88 ++++++++++++++++++++++++++++++++ 23Containers.txt | 88 ++++++++++++++++++++++++++++++++ 24Containers.txt | 88 ++++++++++++++++++++++++++++++++ 25Containers.txt | 88 ++++++++++++++++++++++++++++++++ 26Containers.txt | 88 ++++++++++++++++++++++++++++++++ 27Containers.txt | 88 ++++++++++++++++++++++++++++++++ 28Containers.txt | 88 ++++++++++++++++++++++++++++++++ 29Containers.txt | 88 ++++++++++++++++++++++++++++++++ 30Containers.txt | 88 ++++++++++++++++++++++++++++++++ 31Containers.txt | 88 ++++++++++++++++++++++++++++++++ 32Containers.txt | 88 ++++++++++++++++++++++++++++++++ 33Containers.txt | 88 ++++++++++++++++++++++++++++++++ 34Containers.txt | 88 ++++++++++++++++++++++++++++++++ 35Containers.txt | 88 ++++++++++++++++++++++++++++++++ 36Containers.txt | 88 ++++++++++++++++++++++++++++++++ 37Containers.txt | 88 ++++++++++++++++++++++++++++++++ 38Containers.txt | 88 ++++++++++++++++++++++++++++++++ 39Containers.txt | 88 ++++++++++++++++++++++++++++++++ 40Containers.txt | 88 ++++++++++++++++++++++++++++++++ 41Containers.txt | 88 ++++++++++++++++++++++++++++++++ 42Containers.txt | 88 ++++++++++++++++++++++++++++++++ 43Containers.txt | 88 ++++++++++++++++++++++++++++++++ 44Containers.txt | 88 ++++++++++++++++++++++++++++++++ 45Containers.txt | 88 ++++++++++++++++++++++++++++++++ 46Containers.txt | 88 ++++++++++++++++++++++++++++++++ 47Containers.txt | 88 ++++++++++++++++++++++++++++++++ 48Containers.txt | 88 ++++++++++++++++++++++++++++++++ 49Containers.txt | 88 ++++++++++++++++++++++++++++++++ 50Containers.txt | 88 ++++++++++++++++++++++++++++++++ 51Containers.txt | 88 ++++++++++++++++++++++++++++++++ 52Containers.txt | 88 ++++++++++++++++++++++++++++++++ 53Containers.txt | 88 ++++++++++++++++++++++++++++++++ 54Containers.txt | 88 ++++++++++++++++++++++++++++++++ 55Containers.txt | 88 ++++++++++++++++++++++++++++++++ 56Containers.txt | 88 ++++++++++++++++++++++++++++++++ 57Containers.txt | 88 ++++++++++++++++++++++++++++++++ 58Containers.txt | 88 ++++++++++++++++++++++++++++++++ 59Containers.txt | 88 ++++++++++++++++++++++++++++++++ 60Containers.txt | 88 ++++++++++++++++++++++++++++++++ 61Containers.txt | 88 ++++++++++++++++++++++++++++++++ 62Containers.txt | 88 ++++++++++++++++++++++++++++++++ 63Containers.txt | 88 ++++++++++++++++++++++++++++++++ 64Containers.txt | 88 ++++++++++++++++++++++++++++++++ 65Containers.txt | 88 ++++++++++++++++++++++++++++++++ 66Containers.txt | 88 ++++++++++++++++++++++++++++++++ 67Containers.txt | 88 ++++++++++++++++++++++++++++++++ 68Containers.txt | 88 ++++++++++++++++++++++++++++++++ 69Containers.txt | 88 ++++++++++++++++++++++++++++++++ 70Containers.txt | 88 ++++++++++++++++++++++++++++++++ 71Containers.txt | 88 ++++++++++++++++++++++++++++++++ 72Containers.txt | 88 ++++++++++++++++++++++++++++++++ 73Containers.txt | 88 ++++++++++++++++++++++++++++++++ 74Containers.txt | 88 ++++++++++++++++++++++++++++++++ 75Containers.txt | 88 ++++++++++++++++++++++++++++++++ 76Containers.txt | 88 ++++++++++++++++++++++++++++++++ 77Containers.txt | 88 ++++++++++++++++++++++++++++++++ 78Containers.txt | 88 ++++++++++++++++++++++++++++++++ 79Containers.txt | 88 ++++++++++++++++++++++++++++++++ 80Containers.txt | 88 ++++++++++++++++++++++++++++++++ 81Containers.txt | 88 ++++++++++++++++++++++++++++++++ 82Containers.txt | 88 ++++++++++++++++++++++++++++++++ 83Containers.txt | 88 ++++++++++++++++++++++++++++++++ 84Containers.txt | 88 ++++++++++++++++++++++++++++++++ 85Containers.txt | 88 ++++++++++++++++++++++++++++++++ 86Containers.txt | 88 ++++++++++++++++++++++++++++++++ 87Containers.txt | 88 ++++++++++++++++++++++++++++++++ 88Containers.txt | 88 ++++++++++++++++++++++++++++++++ Backend/Classes/Grid.py | 8 +-- Backend/Classes/Pathfinder.py | 46 +++++++---------- Data/manifests/10Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/20Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/21Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/22Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/23Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/24Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/26Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/27Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/28Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/29Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/30Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/31Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/32Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/33Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/34Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/35Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/36Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/37Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/38Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/39Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/40Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/41Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/42Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/43Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/44Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/45Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/46Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/47Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/48Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/49Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/50Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/51Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/52Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/53Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/54Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/55Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/56Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/57Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/58Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/59Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/60Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/61Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/62Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/63Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/64Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/65Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/66Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/67Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/68Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/69Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/70Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/71Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/72Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/73Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/74Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/75Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/76Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/77Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/78Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/79Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/80Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/81Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/82Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/83Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/84Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/85Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/86Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/87Containers.txt | 88 ++++++++++++++++++++++++++++++++ Data/manifests/88Containers.txt | 88 ++++++++++++++++++++++++++++++++ Tests/test_pathfinder_balance.py | 2 +- backend.py | 9 ++++ generate_test.py | 55 ++++++++++++++++++++ test.py | 51 ++++++++++++++++++ 143 files changed, 12194 insertions(+), 33 deletions(-) create mode 100644 21Containers.txt create mode 100644 22Containers.txt create mode 100644 23Containers.txt create mode 100644 24Containers.txt create mode 100644 25Containers.txt create mode 100644 26Containers.txt create mode 100644 27Containers.txt create mode 100644 28Containers.txt create mode 100644 29Containers.txt create mode 100644 30Containers.txt create mode 100644 31Containers.txt create mode 100644 32Containers.txt create mode 100644 33Containers.txt create mode 100644 34Containers.txt create mode 100644 35Containers.txt create mode 100644 36Containers.txt create mode 100644 37Containers.txt create mode 100644 38Containers.txt create mode 100644 39Containers.txt create mode 100644 40Containers.txt create mode 100644 41Containers.txt create mode 100644 42Containers.txt create mode 100644 43Containers.txt create mode 100644 44Containers.txt create mode 100644 45Containers.txt create mode 100644 46Containers.txt create mode 100644 47Containers.txt create mode 100644 48Containers.txt create mode 100644 49Containers.txt create mode 100644 50Containers.txt create mode 100644 51Containers.txt create mode 100644 52Containers.txt create mode 100644 53Containers.txt create mode 100644 54Containers.txt create mode 100644 55Containers.txt create mode 100644 56Containers.txt create mode 100644 57Containers.txt create mode 100644 58Containers.txt create mode 100644 59Containers.txt create mode 100644 60Containers.txt create mode 100644 61Containers.txt create mode 100644 62Containers.txt create mode 100644 63Containers.txt create mode 100644 64Containers.txt create mode 100644 65Containers.txt create mode 100644 66Containers.txt create mode 100644 67Containers.txt create mode 100644 68Containers.txt create mode 100644 69Containers.txt create mode 100644 70Containers.txt create mode 100644 71Containers.txt create mode 100644 72Containers.txt create mode 100644 73Containers.txt create mode 100644 74Containers.txt create mode 100644 75Containers.txt create mode 100644 76Containers.txt create mode 100644 77Containers.txt create mode 100644 78Containers.txt create mode 100644 79Containers.txt create mode 100644 80Containers.txt create mode 100644 81Containers.txt create mode 100644 82Containers.txt create mode 100644 83Containers.txt create mode 100644 84Containers.txt create mode 100644 85Containers.txt create mode 100644 86Containers.txt create mode 100644 87Containers.txt create mode 100644 88Containers.txt create mode 100644 Data/manifests/10Containers.txt create mode 100644 Data/manifests/20Containers.txt create mode 100644 Data/manifests/21Containers.txt create mode 100644 Data/manifests/22Containers.txt create mode 100644 Data/manifests/23Containers.txt create mode 100644 Data/manifests/24Containers.txt create mode 100644 Data/manifests/26Containers.txt create mode 100644 Data/manifests/27Containers.txt create mode 100644 Data/manifests/28Containers.txt create mode 100644 Data/manifests/29Containers.txt create mode 100644 Data/manifests/30Containers.txt create mode 100644 Data/manifests/31Containers.txt create mode 100644 Data/manifests/32Containers.txt create mode 100644 Data/manifests/33Containers.txt create mode 100644 Data/manifests/34Containers.txt create mode 100644 Data/manifests/35Containers.txt create mode 100644 Data/manifests/36Containers.txt create mode 100644 Data/manifests/37Containers.txt create mode 100644 Data/manifests/38Containers.txt create mode 100644 Data/manifests/39Containers.txt create mode 100644 Data/manifests/40Containers.txt create mode 100644 Data/manifests/41Containers.txt create mode 100644 Data/manifests/42Containers.txt create mode 100644 Data/manifests/43Containers.txt create mode 100644 Data/manifests/44Containers.txt create mode 100644 Data/manifests/45Containers.txt create mode 100644 Data/manifests/46Containers.txt create mode 100644 Data/manifests/47Containers.txt create mode 100644 Data/manifests/48Containers.txt create mode 100644 Data/manifests/49Containers.txt create mode 100644 Data/manifests/50Containers.txt create mode 100644 Data/manifests/51Containers.txt create mode 100644 Data/manifests/52Containers.txt create mode 100644 Data/manifests/53Containers.txt create mode 100644 Data/manifests/54Containers.txt create mode 100644 Data/manifests/55Containers.txt create mode 100644 Data/manifests/56Containers.txt create mode 100644 Data/manifests/57Containers.txt create mode 100644 Data/manifests/58Containers.txt create mode 100644 Data/manifests/59Containers.txt create mode 100644 Data/manifests/60Containers.txt create mode 100644 Data/manifests/61Containers.txt create mode 100644 Data/manifests/62Containers.txt create mode 100644 Data/manifests/63Containers.txt create mode 100644 Data/manifests/64Containers.txt create mode 100644 Data/manifests/65Containers.txt create mode 100644 Data/manifests/66Containers.txt create mode 100644 Data/manifests/67Containers.txt create mode 100644 Data/manifests/68Containers.txt create mode 100644 Data/manifests/69Containers.txt create mode 100644 Data/manifests/70Containers.txt create mode 100644 Data/manifests/71Containers.txt create mode 100644 Data/manifests/72Containers.txt create mode 100644 Data/manifests/73Containers.txt create mode 100644 Data/manifests/74Containers.txt create mode 100644 Data/manifests/75Containers.txt create mode 100644 Data/manifests/76Containers.txt create mode 100644 Data/manifests/77Containers.txt create mode 100644 Data/manifests/78Containers.txt create mode 100644 Data/manifests/79Containers.txt create mode 100644 Data/manifests/80Containers.txt create mode 100644 Data/manifests/81Containers.txt create mode 100644 Data/manifests/82Containers.txt create mode 100644 Data/manifests/83Containers.txt create mode 100644 Data/manifests/84Containers.txt create mode 100644 Data/manifests/85Containers.txt create mode 100644 Data/manifests/86Containers.txt create mode 100644 Data/manifests/87Containers.txt create mode 100644 Data/manifests/88Containers.txt create mode 100644 generate_test.py create mode 100644 test.py diff --git a/21Containers.txt b/21Containers.txt new file mode 100644 index 0000000..384ac87 --- /dev/null +++ b/21Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00466}, Eclipse +[1,02], {00144}, Spectrum +[1,03], {00550}, Beacon +[1,04], {00000}, UNUSED +[1,05], {00615}, Ember +[1,06], {00000}, UNUSED +[1,07], {00676}, Cosmos +[1,08], {00222}, Eclipse +[1,09], {00730}, Beacon +[1,10], {00325}, Polaris +[1,11], {00417}, Echo +[2,01], {00493}, Solstice +[2,02], {00000}, UNUSED +[2,03], {00000}, UNUSED +[2,04], {00000}, UNUSED +[2,05], {00969}, Atlas +[2,06], {00000}, UNUSED +[2,07], {00167}, Echo +[2,08], {00000}, UNUSED +[2,09], {00995}, Prism +[2,10], {00891}, Odyssey +[2,11], {00663}, Spectrum +[3,01], {00000}, UNUSED +[3,02], {00000}, UNUSED +[3,03], {00000}, UNUSED +[3,04], {00000}, UNUSED +[3,05], {00000}, UNUSED +[3,06], {00000}, UNUSED +[3,07], {00259}, Crystal +[3,08], {00000}, UNUSED +[3,09], {00496}, Horizon +[3,10], {00324}, Shadow +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00802}, Dynamo +[4,08], {00000}, UNUSED +[4,09], {00661}, Atlas +[4,10], {00718}, Eclipse +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/22Containers.txt b/22Containers.txt new file mode 100644 index 0000000..3b66cd3 --- /dev/null +++ b/22Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00529}, Eclipse +[1,02], {00286}, Arcadia +[1,03], {00771}, Dynamo +[1,04], {00752}, Voyager +[1,05], {00592}, Zenith +[1,06], {00412}, Cascade +[1,07], {00000}, UNUSED +[1,08], {00186}, Prism +[1,09], {00620}, Halo +[1,10], {00000}, UNUSED +[1,11], {00476}, Glider +[2,01], {00930}, Crystal +[2,02], {00000}, UNUSED +[2,03], {00000}, UNUSED +[2,04], {00000}, UNUSED +[2,05], {00000}, UNUSED +[2,06], {00813}, Aurora +[2,07], {00000}, UNUSED +[2,08], {00944}, Tectonic +[2,09], {00491}, Glider +[2,10], {00000}, UNUSED +[2,11], {00897}, Gravity +[3,01], {00404}, Tectonic +[3,02], {00000}, UNUSED +[3,03], {00000}, UNUSED +[3,04], {00000}, UNUSED +[3,05], {00000}, UNUSED +[3,06], {00000}, UNUSED +[3,07], {00000}, UNUSED +[3,08], {00376}, Orion +[3,09], {00130}, Matrix +[3,10], {00000}, UNUSED +[3,11], {00412}, Comet +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00000}, UNUSED +[4,08], {00170}, Polaris +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00579}, Matrix +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00450}, Everest +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00975}, Solstice +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/23Containers.txt b/23Containers.txt new file mode 100644 index 0000000..de84d9e --- /dev/null +++ b/23Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00319}, Stardust +[1,02], {00308}, Cyclone +[1,03], {00227}, Horizon +[1,04], {00476}, Sol +[1,05], {00000}, UNUSED +[1,06], {00617}, Vertex +[1,07], {00501}, Drift +[1,08], {00801}, Twilight +[1,09], {00772}, Sol +[1,10], {00774}, Nova +[1,11], {00495}, Forge +[2,01], {00000}, UNUSED +[2,02], {00130}, Crystal +[2,03], {00198}, Circuit +[2,04], {00460}, Radiance +[2,05], {00000}, UNUSED +[2,06], {00603}, Vortex +[2,07], {00433}, Apollo +[2,08], {00000}, UNUSED +[2,09], {00710}, Inferno +[2,10], {00819}, Vertex +[2,11], {00651}, Nimbus +[3,01], {00000}, UNUSED +[3,02], {00000}, UNUSED +[3,03], {00289}, Zenith +[3,04], {00820}, Cascade +[3,05], {00000}, UNUSED +[3,06], {00882}, Arcadia +[3,07], {00269}, Axis +[3,08], {00000}, UNUSED +[3,09], {00000}, UNUSED +[3,10], {00000}, UNUSED +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00889}, Cyclone +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/24Containers.txt b/24Containers.txt new file mode 100644 index 0000000..6b19ff0 --- /dev/null +++ b/24Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00998}, Zephyr +[1,02], {00708}, Blaze +[1,03], {00700}, Polaris +[1,04], {00629}, Cyclone +[1,05], {00955}, Glider +[1,06], {00277}, Vortex +[1,07], {00395}, Vertex +[1,08], {00272}, Zephyr +[1,09], {00000}, UNUSED +[1,10], {00818}, Prism +[1,11], {00398}, Polaris +[2,01], {00533}, Radiance +[2,02], {00000}, UNUSED +[2,03], {00216}, Phoenix +[2,04], {00930}, Quantum +[2,05], {00451}, Glacier +[2,06], {00117}, Drift +[2,07], {00879}, Shadow +[2,08], {00000}, UNUSED +[2,09], {00000}, UNUSED +[2,10], {00574}, Nova +[2,11], {00316}, Nimbus +[3,01], {00000}, UNUSED +[3,02], {00000}, UNUSED +[3,03], {00617}, Cyclone +[3,04], {00513}, Glider +[3,05], {00664}, Prism +[3,06], {00000}, UNUSED +[3,07], {00888}, Sol +[3,08], {00000}, UNUSED +[3,09], {00000}, UNUSED +[3,10], {00720}, Titan +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00811}, Vertex +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/25Containers.txt b/25Containers.txt new file mode 100644 index 0000000..da631e3 --- /dev/null +++ b/25Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00000}, UNUSED +[1,02], {00885}, Neptune +[1,03], {00591}, Vertex +[1,04], {00893}, Glacier +[1,05], {00892}, Odyssey +[1,06], {00211}, Spectrum +[1,07], {00150}, Polaris +[1,08], {00944}, Solstice +[1,09], {00513}, Forge +[1,10], {00999}, Singularity +[1,11], {00291}, Comet +[2,01], {00000}, UNUSED +[2,02], {00126}, Mirage +[2,03], {00742}, Cosmos +[2,04], {00000}, UNUSED +[2,05], {00000}, UNUSED +[2,06], {00752}, Tesla +[2,07], {00000}, UNUSED +[2,08], {00133}, Radiance +[2,09], {00708}, Axis +[2,10], {00000}, UNUSED +[2,11], {00673}, Eclipse +[3,01], {00000}, UNUSED +[3,02], {00937}, Apollo +[3,03], {00858}, Shard +[3,04], {00000}, UNUSED +[3,05], {00000}, UNUSED +[3,06], {00398}, Inferno +[3,07], {00000}, UNUSED +[3,08], {00553}, Infinity +[3,09], {00786}, Spectrum +[3,10], {00000}, UNUSED +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00704}, Forge +[4,03], {00910}, Radiance +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00341}, Axis +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00368}, Vertex +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/26Containers.txt b/26Containers.txt new file mode 100644 index 0000000..06c3537 --- /dev/null +++ b/26Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00740}, Echo +[1,02], {00860}, Cascade +[1,03], {00400}, Singularity +[1,04], {00481}, Crystal +[1,05], {00137}, Polaris +[1,06], {00000}, UNUSED +[1,07], {00262}, Phoenix +[1,08], {00721}, Echo +[1,09], {00752}, Nova +[1,10], {00985}, Eclipse +[1,11], {00920}, Cascade +[2,01], {00213}, Zephyr +[2,02], {00316}, Nimbus +[2,03], {00905}, Lunar +[2,04], {00000}, UNUSED +[2,05], {00000}, UNUSED +[2,06], {00000}, UNUSED +[2,07], {00280}, Zenith +[2,08], {00915}, Forge +[2,09], {00000}, UNUSED +[2,10], {00380}, Velocity +[2,11], {00000}, UNUSED +[3,01], {00000}, UNUSED +[3,02], {00778}, Borealis +[3,03], {00642}, Tesla +[3,04], {00000}, UNUSED +[3,05], {00000}, UNUSED +[3,06], {00000}, UNUSED +[3,07], {00000}, UNUSED +[3,08], {00541}, Halo +[3,09], {00000}, UNUSED +[3,10], {00131}, Matrix +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00320}, Orion +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00000}, UNUSED +[4,08], {00797}, Cyclone +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00176}, Singularity +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00977}, Orion +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00264}, Twilight +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00744}, Polaris +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/27Containers.txt b/27Containers.txt new file mode 100644 index 0000000..a955d2b --- /dev/null +++ b/27Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00194}, Aurora +[1,02], {00476}, Stardust +[1,03], {00474}, Dynamo +[1,04], {00663}, Vortex +[1,05], {00360}, Neptune +[1,06], {00780}, Glacier +[1,07], {00607}, Circuit +[1,08], {00974}, Solstice +[1,09], {00455}, Lunar +[1,10], {00340}, Ember +[1,11], {00575}, Circuit +[2,01], {00658}, Zenith +[2,02], {00750}, Ember +[2,03], {00709}, Aero +[2,04], {00359}, Twilight +[2,05], {00301}, Halo +[2,06], {00719}, Vortex +[2,07], {00000}, UNUSED +[2,08], {00664}, Arcadia +[2,09], {00274}, Shadow +[2,10], {00000}, UNUSED +[2,11], {00000}, UNUSED +[3,01], {00177}, Prism +[3,02], {00243}, Drift +[3,03], {00862}, Spectrum +[3,04], {00618}, Neptune +[3,05], {00455}, Forge +[3,06], {00000}, UNUSED +[3,07], {00000}, UNUSED +[3,08], {00000}, UNUSED +[3,09], {00368}, Inferno +[3,10], {00000}, UNUSED +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00749}, Dynamo +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00970}, Glider +[4,06], {00000}, UNUSED +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/28Containers.txt b/28Containers.txt new file mode 100644 index 0000000..3613632 --- /dev/null +++ b/28Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00539}, Odyssey +[1,02], {00978}, Zenith +[1,03], {00204}, Matrix +[1,04], {00559}, Nimbus +[1,05], {00000}, UNUSED +[1,06], {00416}, Solstice +[1,07], {00629}, Cosmos +[1,08], {00678}, Gravity +[1,09], {00618}, Gravity +[1,10], {00521}, Velocity +[1,11], {00860}, Aurora +[2,01], {00627}, Cascade +[2,02], {00188}, Spectrum +[2,03], {00428}, Spectrum +[2,04], {00356}, Velocity +[2,05], {00000}, UNUSED +[2,06], {00628}, Circuit +[2,07], {00375}, Drift +[2,08], {00646}, Vertex +[2,09], {00214}, Zenith +[2,10], {00537}, Echo +[2,11], {00100}, Drift +[3,01], {00411}, Shard +[3,02], {00000}, UNUSED +[3,03], {00000}, UNUSED +[3,04], {00000}, UNUSED +[3,05], {00000}, UNUSED +[3,06], {00000}, UNUSED +[3,07], {00827}, Cosmos +[3,08], {00000}, UNUSED +[3,09], {00732}, Titan +[3,10], {00619}, Vertex +[3,11], {00000}, UNUSED +[4,01], {00330}, Crystal +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00731}, Nova +[4,08], {00000}, UNUSED +[4,09], {00581}, Zenith +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00315}, Atlas +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/29Containers.txt b/29Containers.txt new file mode 100644 index 0000000..6ff21dc --- /dev/null +++ b/29Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00611}, Borealis +[1,02], {00905}, Tesla +[1,03], {00542}, Velocity +[1,04], {00330}, Vertex +[1,05], {00237}, Zephyr +[1,06], {00979}, Eclipse +[1,07], {00288}, Twilight +[1,08], {00263}, Axis +[1,09], {00906}, Spectrum +[1,10], {00366}, Glacier +[1,11], {00818}, Glider +[2,01], {00000}, UNUSED +[2,02], {00902}, Glider +[2,03], {00836}, Vertex +[2,04], {00000}, UNUSED +[2,05], {00639}, Horizon +[2,06], {00236}, Voyager +[2,07], {00219}, Phoenix +[2,08], {00249}, Glider +[2,09], {00667}, Mirage +[2,10], {00143}, Velocity +[2,11], {00458}, Spectrum +[3,01], {00000}, UNUSED +[3,02], {00701}, Horizon +[3,03], {00000}, UNUSED +[3,04], {00000}, UNUSED +[3,05], {00833}, Infinity +[3,06], {00000}, UNUSED +[3,07], {00280}, Cascade +[3,08], {00205}, Vortex +[3,09], {00000}, UNUSED +[3,10], {00778}, Echo +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00531}, Nova +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00115}, Eclipse +[4,06], {00000}, UNUSED +[4,07], {00000}, UNUSED +[4,08], {00207}, Gravity +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00585}, Circuit +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/30Containers.txt b/30Containers.txt new file mode 100644 index 0000000..4aba1b4 --- /dev/null +++ b/30Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00738}, Zenith +[1,02], {00680}, Blaze +[1,03], {00386}, Inferno +[1,04], {00655}, Vortex +[1,05], {00595}, Horizon +[1,06], {00712}, Spectrum +[1,07], {00235}, Spectrum +[1,08], {00221}, Singularity +[1,09], {00913}, Twilight +[1,10], {00824}, Nova +[1,11], {00947}, Circuit +[2,01], {00000}, UNUSED +[2,02], {00695}, Tectonic +[2,03], {00769}, Meteor +[2,04], {00165}, Echo +[2,05], {00000}, UNUSED +[2,06], {00459}, Apollo +[2,07], {00583}, Matrix +[2,08], {00498}, Twilight +[2,09], {00492}, Vertex +[2,10], {00949}, Axis +[2,11], {00516}, Cascade +[3,01], {00000}, UNUSED +[3,02], {00846}, Polaris +[3,03], {00539}, Blaze +[3,04], {00911}, Blaze +[3,05], {00000}, UNUSED +[3,06], {00000}, UNUSED +[3,07], {00000}, UNUSED +[3,08], {00326}, Shard +[3,09], {00523}, Orion +[3,10], {00565}, Comet +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00466}, Cosmos +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00486}, Vertex +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00495}, Shadow +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00904}, Nova +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/31Containers.txt b/31Containers.txt new file mode 100644 index 0000000..3cdc7f3 --- /dev/null +++ b/31Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00942}, Vertex +[1,02], {00871}, Inferno +[1,03], {00202}, Nimbus +[1,04], {00869}, Voyager +[1,05], {00805}, Vertex +[1,06], {00661}, Apollo +[1,07], {00466}, Nexus +[1,08], {00466}, Spectrum +[1,09], {00206}, Orion +[1,10], {00964}, Glacier +[1,11], {00000}, UNUSED +[2,01], {00368}, Quantum +[2,02], {00946}, Singularity +[2,03], {00602}, Zenith +[2,04], {00462}, Odyssey +[2,05], {00388}, Stardust +[2,06], {00207}, Nova +[2,07], {00239}, Forge +[2,08], {00154}, Polaris +[2,09], {00000}, UNUSED +[2,10], {00409}, Aero +[2,11], {00000}, UNUSED +[3,01], {00000}, UNUSED +[3,02], {00476}, Zenith +[3,03], {00000}, UNUSED +[3,04], {00444}, Halo +[3,05], {00228}, Phoenix +[3,06], {00320}, Horizon +[3,07], {00643}, Sol +[3,08], {00000}, UNUSED +[3,09], {00000}, UNUSED +[3,10], {00000}, UNUSED +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00901}, Solstice +[4,03], {00000}, UNUSED +[4,04], {00203}, Comet +[4,05], {00823}, Dynamo +[4,06], {00000}, UNUSED +[4,07], {00113}, Cascade +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00132}, Arcadia +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00868}, Vertex +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00295}, Matrix +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/32Containers.txt b/32Containers.txt new file mode 100644 index 0000000..ed533f5 --- /dev/null +++ b/32Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00640}, Eclipse +[1,02], {00836}, Singularity +[1,03], {00793}, Vortex +[1,04], {00536}, Meteor +[1,05], {00259}, Matrix +[1,06], {00969}, Shard +[1,07], {00725}, Nexus +[1,08], {00339}, Crystal +[1,09], {00269}, Zenith +[1,10], {00451}, Crystal +[1,11], {00763}, Cyclone +[2,01], {00354}, Cascade +[2,02], {00586}, Arcadia +[2,03], {00496}, Cosmos +[2,04], {00640}, Quantum +[2,05], {00739}, Axis +[2,06], {00912}, Glider +[2,07], {00000}, UNUSED +[2,08], {00690}, Aero +[2,09], {00148}, Eclipse +[2,10], {00870}, Zephyr +[2,11], {00724}, Beacon +[3,01], {00000}, UNUSED +[3,02], {00230}, Titan +[3,03], {00646}, Horizon +[3,04], {00884}, Horizon +[3,05], {00000}, UNUSED +[3,06], {00251}, Axis +[3,07], {00000}, UNUSED +[3,08], {00770}, Cyclone +[3,09], {00000}, UNUSED +[3,10], {00000}, UNUSED +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00490}, Radiance +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00231}, Inferno +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00679}, Beacon +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00122}, Circuit +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00778}, Velocity +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00104}, Phoenix +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/33Containers.txt b/33Containers.txt new file mode 100644 index 0000000..64db68b --- /dev/null +++ b/33Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00369}, Aero +[1,02], {00115}, Spectrum +[1,03], {00415}, Echo +[1,04], {00270}, Zenith +[1,05], {00125}, Mirage +[1,06], {00819}, Vortex +[1,07], {00973}, Singularity +[1,08], {00814}, Vortex +[1,09], {00736}, Halo +[1,10], {00902}, Circuit +[1,11], {00544}, Velocity +[2,01], {00325}, Velocity +[2,02], {00500}, Nova +[2,03], {00438}, Orion +[2,04], {00000}, UNUSED +[2,05], {00000}, UNUSED +[2,06], {00656}, Vortex +[2,07], {00609}, Beacon +[2,08], {00548}, Comet +[2,09], {00214}, Meteor +[2,10], {00713}, Singularity +[2,11], {00889}, Glider +[3,01], {00000}, UNUSED +[3,02], {00000}, UNUSED +[3,03], {00594}, Stardust +[3,04], {00000}, UNUSED +[3,05], {00000}, UNUSED +[3,06], {00537}, Halo +[3,07], {00886}, Zephyr +[3,08], {00244}, Zenith +[3,09], {00744}, Inferno +[3,10], {00000}, UNUSED +[3,11], {00278}, Phoenix +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00844}, Spectrum +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00509}, Phoenix +[4,08], {00101}, Ember +[4,09], {00704}, Radiance +[4,10], {00000}, UNUSED +[4,11], {00636}, Glider +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00492}, Solstice +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00804}, Nexus +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/34Containers.txt b/34Containers.txt new file mode 100644 index 0000000..073b369 --- /dev/null +++ b/34Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00647}, Shard +[1,02], {00766}, Vertex +[1,03], {00281}, Solstice +[1,04], {00626}, Twilight +[1,05], {00260}, Solstice +[1,06], {00293}, Titan +[1,07], {00756}, Tesla +[1,08], {00686}, Crystal +[1,09], {00635}, Orion +[1,10], {00622}, Aurora +[1,11], {00655}, Titan +[2,01], {00420}, Forge +[2,02], {00321}, Gravity +[2,03], {00000}, UNUSED +[2,04], {00299}, Meteor +[2,05], {00292}, Horizon +[2,06], {00563}, Everest +[2,07], {00864}, Sol +[2,08], {00574}, Lunar +[2,09], {00548}, Solstice +[2,10], {00944}, Velocity +[2,11], {00247}, Odyssey +[3,01], {00701}, Matrix +[3,02], {00000}, UNUSED +[3,03], {00000}, UNUSED +[3,04], {00651}, Singularity +[3,05], {00729}, Atlas +[3,06], {00600}, Orion +[3,07], {00267}, Aurora +[3,08], {00988}, Voyager +[3,09], {00902}, Orion +[3,10], {00271}, Horizon +[3,11], {00123}, Vertex +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00182}, Cosmos +[4,06], {00549}, Shadow +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00102}, Blaze +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00390}, Polaris +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/35Containers.txt b/35Containers.txt new file mode 100644 index 0000000..73b0066 --- /dev/null +++ b/35Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00846}, Lunar +[1,02], {00373}, Spectrum +[1,03], {00404}, Zenith +[1,04], {00370}, Cosmos +[1,05], {00385}, Apollo +[1,06], {00794}, Horizon +[1,07], {00712}, Mirage +[1,08], {00564}, Comet +[1,09], {00980}, Zenith +[1,10], {00894}, Tectonic +[1,11], {00641}, Drift +[2,01], {00214}, Glider +[2,02], {00636}, Quantum +[2,03], {00157}, Forge +[2,04], {00636}, Singularity +[2,05], {00111}, Vortex +[2,06], {00487}, Circuit +[2,07], {00597}, Zephyr +[2,08], {00000}, UNUSED +[2,09], {00607}, Crystal +[2,10], {00249}, Arcadia +[2,11], {00391}, Dynamo +[3,01], {00937}, Tesla +[3,02], {00516}, Voyager +[3,03], {00792}, Shadow +[3,04], {00926}, Twilight +[3,05], {00680}, Singularity +[3,06], {00424}, Vertex +[3,07], {00000}, UNUSED +[3,08], {00000}, UNUSED +[3,09], {00000}, UNUSED +[3,10], {00133}, Apollo +[3,11], {00607}, Drift +[4,01], {00000}, UNUSED +[4,02], {00422}, Glider +[4,03], {00657}, Vertex +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00670}, Cyclone +[5,01], {00000}, UNUSED +[5,02], {00639}, Spectrum +[5,03], {00343}, Zenith +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00364}, Spectrum +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/36Containers.txt b/36Containers.txt new file mode 100644 index 0000000..5edaa4c --- /dev/null +++ b/36Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00768}, Axis +[1,02], {00401}, Echo +[1,03], {00674}, Horizon +[1,04], {00803}, Vertex +[1,05], {00143}, Tectonic +[1,06], {00000}, UNUSED +[1,07], {00730}, Comet +[1,08], {00910}, Shard +[1,09], {00248}, Singularity +[1,10], {00341}, Inferno +[1,11], {00421}, Halo +[2,01], {00000}, UNUSED +[2,02], {00000}, UNUSED +[2,03], {00718}, Halo +[2,04], {00752}, Mirage +[2,05], {00000}, UNUSED +[2,06], {00000}, UNUSED +[2,07], {00554}, Cyclone +[2,08], {00769}, Horizon +[2,09], {00145}, Vertex +[2,10], {00108}, Voyager +[2,11], {00488}, Comet +[3,01], {00000}, UNUSED +[3,02], {00000}, UNUSED +[3,03], {00774}, Titan +[3,04], {00369}, Shard +[3,05], {00000}, UNUSED +[3,06], {00000}, UNUSED +[3,07], {00140}, Matrix +[3,08], {00537}, Infinity +[3,09], {00807}, Zenith +[3,10], {00840}, Neptune +[3,11], {00439}, Cascade +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00190}, Atlas +[4,04], {00802}, Cosmos +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00000}, UNUSED +[4,08], {00627}, Voyager +[4,09], {00971}, Zephyr +[4,10], {00000}, UNUSED +[4,11], {00491}, Forge +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00187}, Neptune +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00162}, Spectrum +[5,10], {00000}, UNUSED +[5,11], {00232}, Twilight +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00451}, Cascade +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00375}, Horizon +[6,10], {00000}, UNUSED +[6,11], {00867}, Phoenix +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00852}, Titan +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/37Containers.txt b/37Containers.txt new file mode 100644 index 0000000..c3cf836 --- /dev/null +++ b/37Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00806}, Singularity +[1,02], {00250}, Nimbus +[1,03], {00640}, Eclipse +[1,04], {00887}, Vertex +[1,05], {00405}, Apollo +[1,06], {00263}, Zephyr +[1,07], {00256}, Echo +[1,08], {00820}, Stardust +[1,09], {00835}, Crystal +[1,10], {00989}, Zephyr +[1,11], {00864}, Horizon +[2,01], {00501}, Polaris +[2,02], {00650}, Stardust +[2,03], {00195}, Tesla +[2,04], {00673}, Glacier +[2,05], {00000}, UNUSED +[2,06], {00435}, Odyssey +[2,07], {00779}, Echo +[2,08], {00749}, Zenith +[2,09], {00857}, Zenith +[2,10], {00590}, Eclipse +[2,11], {00510}, Orion +[3,01], {00000}, UNUSED +[3,02], {00270}, Ember +[3,03], {00366}, Nexus +[3,04], {00708}, Twilight +[3,05], {00000}, UNUSED +[3,06], {00000}, UNUSED +[3,07], {00542}, Zephyr +[3,08], {00000}, UNUSED +[3,09], {00222}, Crystal +[3,10], {00802}, Zenith +[3,11], {00750}, Zenith +[4,01], {00000}, UNUSED +[4,02], {00189}, Vortex +[4,03], {00381}, Horizon +[4,04], {00696}, Glacier +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00219}, Blaze +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00248}, Blaze +[4,11], {00718}, Meteor +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00899}, Meteor +[5,04], {00603}, Mirage +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00858}, Echo +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/38Containers.txt b/38Containers.txt new file mode 100644 index 0000000..097ea3d --- /dev/null +++ b/38Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00947}, Polaris +[1,02], {00689}, Aero +[1,03], {00804}, Glacier +[1,04], {00459}, Crystal +[1,05], {00966}, Glider +[1,06], {00741}, Voyager +[1,07], {00357}, Zenith +[1,08], {00401}, Dynamo +[1,09], {00829}, Glider +[1,10], {00566}, Everest +[1,11], {00243}, Orion +[2,01], {00244}, Spectrum +[2,02], {00136}, Vertex +[2,03], {00551}, Everest +[2,04], {00183}, Zenith +[2,05], {00340}, Forge +[2,06], {00752}, Velocity +[2,07], {00152}, Nova +[2,08], {00343}, Velocity +[2,09], {00298}, Aero +[2,10], {00848}, Zenith +[2,11], {00799}, Shadow +[3,01], {00000}, UNUSED +[3,02], {00690}, Everest +[3,03], {00568}, Vertex +[3,04], {00506}, Spectrum +[3,05], {00946}, Circuit +[3,06], {00000}, UNUSED +[3,07], {00400}, Comet +[3,08], {00000}, UNUSED +[3,09], {00534}, Nimbus +[3,10], {00550}, Mirage +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00187}, Meteor +[4,03], {00628}, Sol +[4,04], {00973}, Arcadia +[4,05], {00641}, Horizon +[4,06], {00000}, UNUSED +[4,07], {00217}, Shadow +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00827}, Nexus +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00318}, Mirage +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00506}, Dynamo +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00924}, Horizon +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/39Containers.txt b/39Containers.txt new file mode 100644 index 0000000..edb2595 --- /dev/null +++ b/39Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00107}, Vortex +[1,02], {00595}, Nova +[1,03], {00272}, Eclipse +[1,04], {00876}, Meteor +[1,05], {00540}, Horizon +[1,06], {00305}, Comet +[1,07], {00667}, Radiance +[1,08], {00239}, Forge +[1,09], {00307}, Gravity +[1,10], {00604}, Cyclone +[1,11], {00302}, Horizon +[2,01], {00828}, Solstice +[2,02], {00000}, UNUSED +[2,03], {00000}, UNUSED +[2,04], {00369}, Glacier +[2,05], {00535}, Aero +[2,06], {00370}, Cyclone +[2,07], {00552}, Lunar +[2,08], {00125}, Nimbus +[2,09], {00238}, Meteor +[2,10], {00931}, Velocity +[2,11], {00596}, Solstice +[3,01], {00662}, Zenith +[3,02], {00000}, UNUSED +[3,03], {00000}, UNUSED +[3,04], {00000}, UNUSED +[3,05], {00447}, Meteor +[3,06], {00859}, Matrix +[3,07], {00730}, Prism +[3,08], {00179}, Quantum +[3,09], {00246}, Blaze +[3,10], {00000}, UNUSED +[3,11], {00196}, Vertex +[4,01], {00920}, Blaze +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00422}, Cyclone +[4,07], {00336}, Vertex +[4,08], {00494}, Vortex +[4,09], {00780}, Lunar +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00991}, Ember +[5,07], {00775}, Solstice +[5,08], {00936}, Cyclone +[5,09], {00515}, Orion +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00783}, Zephyr +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00893}, Atlas +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00489}, Aero +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/40Containers.txt b/40Containers.txt new file mode 100644 index 0000000..94a3d9d --- /dev/null +++ b/40Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00343}, Nexus +[1,02], {00882}, Atlas +[1,03], {00688}, Vertex +[1,04], {00952}, Vortex +[1,05], {00521}, Borealis +[1,06], {00466}, Velocity +[1,07], {00117}, Mirage +[1,08], {00720}, Vortex +[1,09], {00522}, Aurora +[1,10], {00648}, Mirage +[1,11], {00479}, Titan +[2,01], {00000}, UNUSED +[2,02], {00387}, Atlas +[2,03], {00000}, UNUSED +[2,04], {00123}, Spectrum +[2,05], {00978}, Dynamo +[2,06], {00864}, Dynamo +[2,07], {00206}, Arcadia +[2,08], {00572}, Vortex +[2,09], {00228}, Zenith +[2,10], {00614}, Tectonic +[2,11], {00448}, Titan +[3,01], {00000}, UNUSED +[3,02], {00000}, UNUSED +[3,03], {00000}, UNUSED +[3,04], {00000}, UNUSED +[3,05], {00456}, Spectrum +[3,06], {00344}, Meteor +[3,07], {00538}, Arcadia +[3,08], {00796}, Ember +[3,09], {00557}, Tectonic +[3,10], {00599}, Velocity +[3,11], {00567}, Circuit +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00349}, Voyager +[4,06], {00000}, UNUSED +[4,07], {00175}, Vertex +[4,08], {00752}, Everest +[4,09], {00218}, Velocity +[4,10], {00000}, UNUSED +[4,11], {00504}, Atlas +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00942}, Tesla +[5,06], {00000}, UNUSED +[5,07], {00865}, Crystal +[5,08], {00158}, Echo +[5,09], {00491}, Zenith +[5,10], {00000}, UNUSED +[5,11], {00990}, Spectrum +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00181}, Cyclone +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00302}, Ember +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00728}, Singularity +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/41Containers.txt b/41Containers.txt new file mode 100644 index 0000000..6950f65 --- /dev/null +++ b/41Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00653}, Titan +[1,02], {00689}, Titan +[1,03], {00117}, Spectrum +[1,04], {00592}, Radiance +[1,05], {00923}, Polaris +[1,06], {00138}, Vertex +[1,07], {00951}, Cyclone +[1,08], {00127}, Ember +[1,09], {00442}, Zenith +[1,10], {00748}, Drift +[1,11], {00979}, Crystal +[2,01], {00762}, Velocity +[2,02], {00563}, Spectrum +[2,03], {00851}, Matrix +[2,04], {00583}, Zenith +[2,05], {00246}, Zenith +[2,06], {00728}, Zephyr +[2,07], {00661}, Tectonic +[2,08], {00000}, UNUSED +[2,09], {00515}, Glider +[2,10], {00157}, Meteor +[2,11], {00315}, Eclipse +[3,01], {00196}, Eclipse +[3,02], {00000}, UNUSED +[3,03], {00670}, Circuit +[3,04], {00780}, Meteor +[3,05], {00979}, Solstice +[3,06], {00260}, Velocity +[3,07], {00298}, Shard +[3,08], {00000}, UNUSED +[3,09], {00801}, Circuit +[3,10], {00625}, Tesla +[3,11], {00779}, Arcadia +[4,01], {00368}, Solstice +[4,02], {00000}, UNUSED +[4,03], {00675}, Dynamo +[4,04], {00309}, Solstice +[4,05], {00820}, Spectrum +[4,06], {00732}, Aurora +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00794}, Zenith +[4,11], {00896}, Nexus +[5,01], {00589}, Circuit +[5,02], {00000}, UNUSED +[5,03], {00789}, Nova +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00678}, Sol +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00278}, Polaris +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/42Containers.txt b/42Containers.txt new file mode 100644 index 0000000..b20e2f1 --- /dev/null +++ b/42Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00289}, Inferno +[1,02], {00169}, Tesla +[1,03], {00938}, Sol +[1,04], {00470}, Tectonic +[1,05], {00230}, Mirage +[1,06], {00559}, Stardust +[1,07], {00485}, Cascade +[1,08], {00302}, Gravity +[1,09], {00660}, Cascade +[1,10], {00193}, Shard +[1,11], {00276}, Everest +[2,01], {00863}, Forge +[2,02], {00898}, Eclipse +[2,03], {00176}, Neptune +[2,04], {00288}, Aurora +[2,05], {00377}, Circuit +[2,06], {00665}, Aero +[2,07], {00822}, Velocity +[2,08], {00000}, UNUSED +[2,09], {00136}, Meteor +[2,10], {00468}, Shard +[2,11], {00816}, Tectonic +[3,01], {00133}, Vortex +[3,02], {00000}, UNUSED +[3,03], {00925}, Zenith +[3,04], {00580}, Forge +[3,05], {00106}, Dynamo +[3,06], {00650}, Vertex +[3,07], {00738}, Vortex +[3,08], {00000}, UNUSED +[3,09], {00433}, Twilight +[3,10], {00836}, Horizon +[3,11], {00134}, Sol +[4,01], {00445}, Spectrum +[4,02], {00000}, UNUSED +[4,03], {00712}, Zenith +[4,04], {00695}, Sol +[4,05], {00427}, Glacier +[4,06], {00294}, Nexus +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00978}, Axis +[4,11], {00549}, Aero +[5,01], {00970}, Zenith +[5,02], {00000}, UNUSED +[5,03], {00436}, Circuit +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00420}, Dynamo +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00271}, Matrix +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00706}, Comet +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/43Containers.txt b/43Containers.txt new file mode 100644 index 0000000..918d58e --- /dev/null +++ b/43Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00875}, Crystal +[1,02], {00337}, Horizon +[1,03], {00729}, Nimbus +[1,04], {00435}, Blaze +[1,05], {00190}, Halo +[1,06], {00379}, Cosmos +[1,07], {00183}, Cosmos +[1,08], {00275}, Everest +[1,09], {00469}, Voyager +[1,10], {00208}, Spectrum +[1,11], {00557}, Horizon +[2,01], {00226}, Drift +[2,02], {00748}, Apollo +[2,03], {00489}, Tesla +[2,04], {00593}, Twilight +[2,05], {00000}, UNUSED +[2,06], {00395}, Twilight +[2,07], {00566}, Voyager +[2,08], {00469}, Apollo +[2,09], {00381}, Everest +[2,10], {00392}, Forge +[2,11], {00322}, Velocity +[3,01], {00664}, Mirage +[3,02], {00998}, Dynamo +[3,03], {00276}, Prism +[3,04], {00116}, Nexus +[3,05], {00000}, UNUSED +[3,06], {00798}, Gravity +[3,07], {00571}, Drift +[3,08], {00244}, Voyager +[3,09], {00000}, UNUSED +[3,10], {00815}, Matrix +[3,11], {00000}, UNUSED +[4,01], {00286}, Spectrum +[4,02], {00429}, Titan +[4,03], {00361}, Vortex +[4,04], {00794}, Twilight +[4,05], {00000}, UNUSED +[4,06], {00514}, Neptune +[4,07], {00000}, UNUSED +[4,08], {00851}, Nova +[4,09], {00000}, UNUSED +[4,10], {00756}, Quantum +[4,11], {00000}, UNUSED +[5,01], {00482}, Everest +[5,02], {00291}, Everest +[5,03], {00795}, Orion +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00246}, Vortex +[5,07], {00000}, UNUSED +[5,08], {00393}, Forge +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00604}, Solstice +[6,02], {00899}, Eclipse +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/44Containers.txt b/44Containers.txt new file mode 100644 index 0000000..eb12fc3 --- /dev/null +++ b/44Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00723}, Matrix +[1,02], {00862}, Nexus +[1,03], {00659}, Cosmos +[1,04], {00219}, Apollo +[1,05], {00968}, Dynamo +[1,06], {00546}, Echo +[1,07], {00900}, Drift +[1,08], {00945}, Comet +[1,09], {00848}, Polaris +[1,10], {00492}, Cyclone +[1,11], {00652}, Mirage +[2,01], {00458}, Matrix +[2,02], {00000}, UNUSED +[2,03], {00000}, UNUSED +[2,04], {00694}, Beacon +[2,05], {00553}, Nexus +[2,06], {00192}, Crystal +[2,07], {00907}, Voyager +[2,08], {00653}, Cyclone +[2,09], {00524}, Spectrum +[2,10], {00533}, Cosmos +[2,11], {00317}, Beacon +[3,01], {00378}, Circuit +[3,02], {00000}, UNUSED +[3,03], {00000}, UNUSED +[3,04], {00250}, Ember +[3,05], {00561}, Echo +[3,06], {00588}, Stardust +[3,07], {00654}, Cyclone +[3,08], {00613}, Polaris +[3,09], {00446}, Comet +[3,10], {00000}, UNUSED +[3,11], {00258}, Spectrum +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00776}, Atlas +[4,05], {00286}, Zenith +[4,06], {00466}, Zenith +[4,07], {00000}, UNUSED +[4,08], {00473}, Zenith +[4,09], {00809}, Nexus +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00534}, Odyssey +[5,05], {00186}, Nexus +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00626}, Infinity +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00837}, Tesla +[6,05], {00572}, Axis +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00301}, Lunar +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00611}, Titan +[7,05], {00978}, Vertex +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00675}, Nexus +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00809}, Polaris +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00269}, Spectrum +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/45Containers.txt b/45Containers.txt new file mode 100644 index 0000000..4f0bb47 --- /dev/null +++ b/45Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00298}, Echo +[1,02], {00979}, Nexus +[1,03], {00919}, Velocity +[1,04], {00832}, Nexus +[1,05], {00956}, Polaris +[1,06], {00710}, Aurora +[1,07], {00417}, Shadow +[1,08], {00653}, Crystal +[1,09], {00937}, Apollo +[1,10], {00152}, Odyssey +[1,11], {00984}, Stardust +[2,01], {00882}, Cosmos +[2,02], {00864}, Zenith +[2,03], {00613}, Forge +[2,04], {00886}, Nimbus +[2,05], {00425}, Vertex +[2,06], {00831}, Horizon +[2,07], {00304}, Horizon +[2,08], {00744}, Spectrum +[2,09], {00897}, Atlas +[2,10], {00119}, Singularity +[2,11], {00000}, UNUSED +[3,01], {00461}, Meteor +[3,02], {00226}, Titan +[3,03], {00000}, UNUSED +[3,04], {00966}, Vertex +[3,05], {00930}, Atlas +[3,06], {00129}, Shard +[3,07], {00223}, Vertex +[3,08], {00849}, Cosmos +[3,09], {00858}, Radiance +[3,10], {00256}, Phoenix +[3,11], {00000}, UNUSED +[4,01], {00372}, Singularity +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00461}, Apollo +[4,05], {00847}, Aurora +[4,06], {00602}, Forge +[4,07], {00677}, Velocity +[4,08], {00517}, Infinity +[4,09], {00952}, Neptune +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00858}, Prism +[5,05], {00000}, UNUSED +[5,06], {00621}, Aero +[5,07], {00449}, Eclipse +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00886}, Aero +[6,05], {00000}, UNUSED +[6,06], {00615}, Radiance +[6,07], {00609}, Comet +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00241}, Glacier +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00119}, Titan +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/46Containers.txt b/46Containers.txt new file mode 100644 index 0000000..f222606 --- /dev/null +++ b/46Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00108}, Gravity +[1,02], {00863}, Vertex +[1,03], {00118}, Atlas +[1,04], {00658}, Nexus +[1,05], {00517}, Cascade +[1,06], {00647}, Glacier +[1,07], {00928}, Arcadia +[1,08], {00427}, Zenith +[1,09], {00524}, Atlas +[1,10], {00314}, Velocity +[1,11], {00413}, Stardust +[2,01], {00193}, Blaze +[2,02], {00868}, Polaris +[2,03], {00763}, Eclipse +[2,04], {00480}, Axis +[2,05], {00928}, Crystal +[2,06], {00777}, Orion +[2,07], {00899}, Horizon +[2,08], {00419}, Sol +[2,09], {00674}, Nova +[2,10], {00366}, Borealis +[2,11], {00886}, Nova +[3,01], {00127}, Twilight +[3,02], {00533}, Quantum +[3,03], {00285}, Meteor +[3,04], {00567}, Voyager +[3,05], {00684}, Axis +[3,06], {00315}, Meteor +[3,07], {00739}, Comet +[3,08], {00695}, Echo +[3,09], {00517}, Cascade +[3,10], {00000}, UNUSED +[3,11], {00338}, Circuit +[4,01], {00000}, UNUSED +[4,02], {00668}, Cyclone +[4,03], {00102}, Matrix +[4,04], {00943}, Nexus +[4,05], {00362}, Ember +[4,06], {00918}, Zenith +[4,07], {00134}, Eclipse +[4,08], {00813}, Arcadia +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00785}, Matrix +[5,05], {00615}, Borealis +[5,06], {00860}, Singularity +[5,07], {00782}, Sol +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00609}, Orion +[6,06], {00749}, Dynamo +[6,07], {00913}, Shard +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/47Containers.txt b/47Containers.txt new file mode 100644 index 0000000..845da07 --- /dev/null +++ b/47Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00440}, Arcadia +[1,02], {00551}, Velocity +[1,03], {00908}, Odyssey +[1,04], {00852}, Cascade +[1,05], {00485}, Spectrum +[1,06], {00644}, Forge +[1,07], {00254}, Echo +[1,08], {00632}, Spectrum +[1,09], {00117}, Cosmos +[1,10], {00678}, Shard +[1,11], {00814}, Blaze +[2,01], {00111}, Everest +[2,02], {00637}, Orion +[2,03], {00343}, Sol +[2,04], {00203}, Circuit +[2,05], {00933}, Horizon +[2,06], {00337}, Glider +[2,07], {00000}, UNUSED +[2,08], {00141}, Borealis +[2,09], {00846}, Eclipse +[2,10], {00380}, Mirage +[2,11], {00318}, Everest +[3,01], {00940}, Glacier +[3,02], {00200}, Eclipse +[3,03], {00593}, Vertex +[3,04], {00643}, Matrix +[3,05], {00174}, Spectrum +[3,06], {00210}, Everest +[3,07], {00000}, UNUSED +[3,08], {00958}, Inferno +[3,09], {00411}, Vortex +[3,10], {00909}, Nimbus +[3,11], {00130}, Twilight +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00957}, Axis +[4,04], {00987}, Tectonic +[4,05], {00963}, Cosmos +[4,06], {00576}, Drift +[4,07], {00000}, UNUSED +[4,08], {00675}, Arcadia +[4,09], {00908}, Crystal +[4,10], {00337}, Circuit +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00381}, Polaris +[5,04], {00553}, Sol +[5,05], {00364}, Zenith +[5,06], {00296}, Echo +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00750}, Borealis +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00923}, Atlas +[6,05], {00000}, UNUSED +[6,06], {00645}, Tectonic +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00680}, Forge +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00697}, Echo +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/48Containers.txt b/48Containers.txt new file mode 100644 index 0000000..cd467d9 --- /dev/null +++ b/48Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00680}, Blaze +[1,02], {00893}, Blaze +[1,03], {00352}, Gravity +[1,04], {00394}, Vertex +[1,05], {00469}, Lunar +[1,06], {00762}, Singularity +[1,07], {00352}, Shard +[1,08], {00476}, Cyclone +[1,09], {00685}, Aurora +[1,10], {00548}, Matrix +[1,11], {00000}, UNUSED +[2,01], {00422}, Gravity +[2,02], {00242}, Nova +[2,03], {00821}, Meteor +[2,04], {00521}, Glider +[2,05], {00803}, Nexus +[2,06], {00485}, Titan +[2,07], {00362}, Shard +[2,08], {00268}, Phoenix +[2,09], {00508}, Spectrum +[2,10], {00250}, Echo +[2,11], {00000}, UNUSED +[3,01], {00000}, UNUSED +[3,02], {00355}, Echo +[3,03], {00995}, Stardust +[3,04], {00222}, Twilight +[3,05], {00553}, Solstice +[3,06], {00251}, Matrix +[3,07], {00000}, UNUSED +[3,08], {00776}, Axis +[3,09], {00951}, Beacon +[3,10], {00171}, Nimbus +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00704}, Gravity +[4,03], {00801}, Singularity +[4,04], {00475}, Nexus +[4,05], {00813}, Zephyr +[4,06], {00385}, Cyclone +[4,07], {00000}, UNUSED +[4,08], {00879}, Zephyr +[4,09], {00487}, Titan +[4,10], {00664}, Eclipse +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00462}, Cosmos +[5,03], {00587}, Tesla +[5,04], {00000}, UNUSED +[5,05], {00216}, Phoenix +[5,06], {00180}, Aurora +[5,07], {00000}, UNUSED +[5,08], {00686}, Quantum +[5,09], {00717}, Cascade +[5,10], {00717}, Cyclone +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00636}, Shadow +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00121}, Odyssey +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00189}, Cosmos +[6,09], {00926}, Velocity +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00271}, Stardust +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/49Containers.txt b/49Containers.txt new file mode 100644 index 0000000..523bdbe --- /dev/null +++ b/49Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00649}, Atlas +[1,02], {00517}, Matrix +[1,03], {00742}, Tectonic +[1,04], {00568}, Crystal +[1,05], {00645}, Nova +[1,06], {00419}, Blaze +[1,07], {00483}, Phoenix +[1,08], {00761}, Matrix +[1,09], {00477}, Shard +[1,10], {00386}, Shard +[1,11], {00576}, Shard +[2,01], {00167}, Mirage +[2,02], {00984}, Vertex +[2,03], {00102}, Odyssey +[2,04], {00959}, Neptune +[2,05], {00502}, Everest +[2,06], {00878}, Apollo +[2,07], {00000}, UNUSED +[2,08], {00158}, Gravity +[2,09], {00243}, Stardust +[2,10], {00673}, Echo +[2,11], {00621}, Inferno +[3,01], {00757}, Solstice +[3,02], {00201}, Polaris +[3,03], {00369}, Apollo +[3,04], {00974}, Vortex +[3,05], {00475}, Blaze +[3,06], {00428}, Singularity +[3,07], {00000}, UNUSED +[3,08], {00289}, Cyclone +[3,09], {00630}, Echo +[3,10], {00163}, Orion +[3,11], {00000}, UNUSED +[4,01], {00704}, Zenith +[4,02], {00000}, UNUSED +[4,03], {00211}, Aero +[4,04], {00000}, UNUSED +[4,05], {00537}, Eclipse +[4,06], {00842}, Sol +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00676}, Mirage +[4,10], {00554}, Borealis +[4,11], {00000}, UNUSED +[5,01], {00642}, Echo +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00832}, Forge +[5,06], {00789}, Aurora +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00404}, Spectrum +[5,10], {00388}, Glacier +[5,11], {00000}, UNUSED +[6,01], {00710}, Spectrum +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00210}, Shadow +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00737}, Neptune +[6,11], {00000}, UNUSED +[7,01], {00967}, Odyssey +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00776}, Forge +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00389}, Matrix +[7,11], {00000}, UNUSED +[8,01], {00845}, Twilight +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00453}, Echo +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/50Containers.txt b/50Containers.txt new file mode 100644 index 0000000..fc5bda1 --- /dev/null +++ b/50Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00719}, Comet +[1,02], {00271}, Axis +[1,03], {00377}, Orion +[1,04], {00397}, Prism +[1,05], {00410}, Zenith +[1,06], {00246}, Velocity +[1,07], {00462}, Velocity +[1,08], {00233}, Cascade +[1,09], {00959}, Shard +[1,10], {00277}, Lunar +[1,11], {00656}, Horizon +[2,01], {00937}, Gravity +[2,02], {00187}, Sol +[2,03], {00464}, Borealis +[2,04], {00706}, Inferno +[2,05], {00267}, Nova +[2,06], {00666}, Mirage +[2,07], {00929}, Stardust +[2,08], {00784}, Sol +[2,09], {00768}, Everest +[2,10], {00647}, Drift +[2,11], {00632}, Crystal +[3,01], {00000}, UNUSED +[3,02], {00000}, UNUSED +[3,03], {00482}, Ember +[3,04], {00792}, Zenith +[3,05], {00256}, Radiance +[3,06], {00444}, Echo +[3,07], {00211}, Matrix +[3,08], {00854}, Horizon +[3,09], {00533}, Tectonic +[3,10], {00325}, Spectrum +[3,11], {00662}, Sol +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00231}, Stardust +[4,05], {00461}, Polaris +[4,06], {00988}, Eclipse +[4,07], {00528}, Sol +[4,08], {00000}, UNUSED +[4,09], {00719}, Glacier +[4,10], {00913}, Quantum +[4,11], {00952}, Zephyr +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00188}, Meteor +[5,05], {00889}, Cascade +[5,06], {00000}, UNUSED +[5,07], {00969}, Shadow +[5,08], {00000}, UNUSED +[5,09], {00902}, Vertex +[5,10], {00558}, Odyssey +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00598}, Aurora +[6,05], {00281}, Dynamo +[6,06], {00000}, UNUSED +[6,07], {00448}, Vortex +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00844}, Vertex +[7,05], {00603}, Everest +[7,06], {00000}, UNUSED +[7,07], {00849}, Blaze +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00408}, Neptune +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/51Containers.txt b/51Containers.txt new file mode 100644 index 0000000..85311c9 --- /dev/null +++ b/51Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00919}, Comet +[1,02], {00365}, Glacier +[1,03], {00674}, Singularity +[1,04], {00721}, Lunar +[1,05], {00776}, Vertex +[1,06], {00505}, Nimbus +[1,07], {00217}, Blaze +[1,08], {00639}, Singularity +[1,09], {00980}, Spectrum +[1,10], {00162}, Spectrum +[1,11], {00347}, Odyssey +[2,01], {00721}, Vortex +[2,02], {00952}, Eclipse +[2,03], {00806}, Comet +[2,04], {00343}, Orion +[2,05], {00110}, Prism +[2,06], {00207}, Horizon +[2,07], {00306}, Zenith +[2,08], {00477}, Cosmos +[2,09], {00235}, Everest +[2,10], {00801}, Phoenix +[2,11], {00257}, Tectonic +[3,01], {00254}, Atlas +[3,02], {00352}, Aurora +[3,03], {00577}, Beacon +[3,04], {00212}, Eclipse +[3,05], {00492}, Cyclone +[3,06], {00728}, Comet +[3,07], {00381}, Tectonic +[3,08], {00421}, Cyclone +[3,09], {00000}, UNUSED +[3,10], {00814}, Axis +[3,11], {00126}, Comet +[4,01], {00916}, Shard +[4,02], {00345}, Tesla +[4,03], {00239}, Zenith +[4,04], {00523}, Halo +[4,05], {00720}, Beacon +[4,06], {00297}, Sol +[4,07], {00428}, Orion +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00308}, Voyager +[4,11], {00000}, UNUSED +[5,01], {00943}, Lunar +[5,02], {00666}, Aero +[5,03], {00101}, Everest +[5,04], {00466}, Orion +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00446}, Drift +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00844}, Echo +[5,11], {00000}, UNUSED +[6,01], {00732}, Eclipse +[6,02], {00183}, Spectrum +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00819}, Aurora +[7,02], {00818}, Shadow +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00446}, Polaris +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/52Containers.txt b/52Containers.txt new file mode 100644 index 0000000..866e69c --- /dev/null +++ b/52Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00756}, Drift +[1,02], {00708}, Odyssey +[1,03], {00919}, Solstice +[1,04], {00364}, Mirage +[1,05], {00579}, Glacier +[1,06], {00186}, Circuit +[1,07], {00818}, Spectrum +[1,08], {00446}, Comet +[1,09], {00418}, Echo +[1,10], {00761}, Glacier +[1,11], {00231}, Horizon +[2,01], {00555}, Horizon +[2,02], {00383}, Zephyr +[2,03], {00602}, Polaris +[2,04], {00617}, Axis +[2,05], {00399}, Velocity +[2,06], {00910}, Apollo +[2,07], {00791}, Sol +[2,08], {00929}, Eclipse +[2,09], {00323}, Nexus +[2,10], {00164}, Echo +[2,11], {00127}, Solstice +[3,01], {00000}, UNUSED +[3,02], {00811}, Tectonic +[3,03], {00887}, Singularity +[3,04], {00140}, Polaris +[3,05], {00223}, Drift +[3,06], {00738}, Phoenix +[3,07], {00665}, Lunar +[3,08], {00326}, Sol +[3,09], {00749}, Aurora +[3,10], {00936}, Echo +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00114}, Prism +[4,04], {00754}, Eclipse +[4,05], {00633}, Gravity +[4,06], {00113}, Eclipse +[4,07], {00479}, Prism +[4,08], {00000}, UNUSED +[4,09], {00973}, Eclipse +[4,10], {00705}, Orion +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00403}, Polaris +[5,04], {00943}, Spectrum +[5,05], {00211}, Sol +[5,06], {00603}, Tectonic +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00405}, Aero +[5,10], {00165}, Ember +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00473}, Velocity +[6,04], {00650}, Blaze +[6,05], {00368}, Phoenix +[6,06], {00812}, Tesla +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00746}, Meteor +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00493}, Tesla +[7,05], {00000}, UNUSED +[7,06], {00830}, Glider +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00359}, Horizon +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/53Containers.txt b/53Containers.txt new file mode 100644 index 0000000..efeb6c9 --- /dev/null +++ b/53Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00516}, Eclipse +[1,02], {00457}, Apollo +[1,03], {00727}, Nexus +[1,04], {00529}, Zephyr +[1,05], {00737}, Tectonic +[1,06], {00218}, Voyager +[1,07], {00180}, Blaze +[1,08], {00855}, Odyssey +[1,09], {00659}, Solstice +[1,10], {00619}, Beacon +[1,11], {00322}, Spectrum +[2,01], {00331}, Aurora +[2,02], {00324}, Vortex +[2,03], {00607}, Borealis +[2,04], {00868}, Cyclone +[2,05], {00345}, Polaris +[2,06], {00195}, Gravity +[2,07], {00552}, Sol +[2,08], {00425}, Polaris +[2,09], {00905}, Zenith +[2,10], {00294}, Polaris +[2,11], {00200}, Blaze +[3,01], {00561}, Comet +[3,02], {00142}, Infinity +[3,03], {00719}, Inferno +[3,04], {00818}, Apollo +[3,05], {00000}, UNUSED +[3,06], {00304}, Vertex +[3,07], {00347}, Comet +[3,08], {00313}, Nimbus +[3,09], {00897}, Odyssey +[3,10], {00586}, Meteor +[3,11], {00782}, Velocity +[4,01], {00334}, Infinity +[4,02], {00502}, Apollo +[4,03], {00747}, Halo +[4,04], {00314}, Halo +[4,05], {00000}, UNUSED +[4,06], {00641}, Arcadia +[4,07], {00996}, Cyclone +[4,08], {00989}, Spectrum +[4,09], {00556}, Nova +[4,10], {00321}, Blaze +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00906}, Glacier +[5,03], {00296}, Lunar +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00122}, Echo +[5,08], {00118}, Twilight +[5,09], {00469}, Velocity +[5,10], {00287}, Spectrum +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00471}, Nova +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00635}, Polaris +[6,08], {00296}, Twilight +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00206}, Atlas +[7,08], {00929}, Sol +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00412}, Eclipse +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/54Containers.txt b/54Containers.txt new file mode 100644 index 0000000..1b66f9e --- /dev/null +++ b/54Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00416}, Polaris +[1,02], {00743}, Meteor +[1,03], {00919}, Forge +[1,04], {00370}, Stardust +[1,05], {00176}, Inferno +[1,06], {00312}, Velocity +[1,07], {00293}, Stardust +[1,08], {00452}, Titan +[1,09], {00830}, Zenith +[1,10], {00734}, Halo +[1,11], {00992}, Cosmos +[2,01], {00622}, Shadow +[2,02], {00639}, Echo +[2,03], {00404}, Drift +[2,04], {00130}, Eclipse +[2,05], {00812}, Gravity +[2,06], {00599}, Eclipse +[2,07], {00328}, Halo +[2,08], {00837}, Spectrum +[2,09], {00636}, Neptune +[2,10], {00195}, Inferno +[2,11], {00000}, UNUSED +[3,01], {00216}, Inferno +[3,02], {00292}, Comet +[3,03], {00464}, Arcadia +[3,04], {00161}, Nova +[3,05], {00471}, Nimbus +[3,06], {00321}, Tesla +[3,07], {00142}, Atlas +[3,08], {00707}, Tesla +[3,09], {00106}, Orion +[3,10], {00863}, Forge +[3,11], {00000}, UNUSED +[4,01], {00829}, Zenith +[4,02], {00688}, Inferno +[4,03], {00615}, Nova +[4,04], {00580}, Polaris +[4,05], {00377}, Twilight +[4,06], {00990}, Quantum +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00959}, Borealis +[4,10], {00809}, Echo +[4,11], {00000}, UNUSED +[5,01], {00202}, Spectrum +[5,02], {00403}, Velocity +[5,03], {00866}, Phoenix +[5,04], {00928}, Zenith +[5,05], {00000}, UNUSED +[5,06], {00359}, Infinity +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00513}, Prism +[5,11], {00000}, UNUSED +[6,01], {00333}, Blaze +[6,02], {00148}, Everest +[6,03], {00000}, UNUSED +[6,04], {00824}, Zephyr +[6,05], {00000}, UNUSED +[6,06], {00173}, Solstice +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00321}, Vortex +[7,02], {00553}, Zenith +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00102}, Zenith +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00569}, Spectrum +[8,02], {00283}, Glacier +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/55Containers.txt b/55Containers.txt new file mode 100644 index 0000000..038861e --- /dev/null +++ b/55Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00651}, Eclipse +[1,02], {00638}, Spectrum +[1,03], {00540}, Polaris +[1,04], {00244}, Crystal +[1,05], {00136}, Echo +[1,06], {00965}, Nimbus +[1,07], {00769}, Quantum +[1,08], {00843}, Forge +[1,09], {00256}, Vortex +[1,10], {00596}, Echo +[1,11], {00633}, Phoenix +[2,01], {00274}, Echo +[2,02], {00604}, Cosmos +[2,03], {00255}, Infinity +[2,04], {00184}, Cyclone +[2,05], {00000}, UNUSED +[2,06], {00210}, Neptune +[2,07], {00743}, Radiance +[2,08], {00517}, Mirage +[2,09], {00927}, Nexus +[2,10], {00964}, Quantum +[2,11], {00932}, Prism +[3,01], {00555}, Comet +[3,02], {00897}, Echo +[3,03], {00226}, Quantum +[3,04], {00515}, Zenith +[3,05], {00000}, UNUSED +[3,06], {00212}, Zephyr +[3,07], {00899}, Halo +[3,08], {00395}, Ember +[3,09], {00507}, Prism +[3,10], {00363}, Circuit +[3,11], {00354}, Cascade +[4,01], {00170}, Glider +[4,02], {00000}, UNUSED +[4,03], {00418}, Inferno +[4,04], {00304}, Vortex +[4,05], {00000}, UNUSED +[4,06], {00868}, Borealis +[4,07], {00000}, UNUSED +[4,08], {00212}, Circuit +[4,09], {00254}, Vortex +[4,10], {00968}, Apollo +[4,11], {00653}, Velocity +[5,01], {00628}, Echo +[5,02], {00000}, UNUSED +[5,03], {00732}, Velocity +[5,04], {00928}, Matrix +[5,05], {00000}, UNUSED +[5,06], {00487}, Sol +[5,07], {00000}, UNUSED +[5,08], {00669}, Zenith +[5,09], {00553}, Zenith +[5,10], {00348}, Beacon +[5,11], {00260}, Tectonic +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00978}, Atlas +[6,04], {00215}, Horizon +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00413}, Atlas +[6,10], {00000}, UNUSED +[6,11], {00637}, Infinity +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00660}, Orion +[7,04], {00652}, Atlas +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00746}, Radiance +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00448}, Nexus +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/56Containers.txt b/56Containers.txt new file mode 100644 index 0000000..9ce8696 --- /dev/null +++ b/56Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00643}, Titan +[1,02], {00968}, Zenith +[1,03], {00145}, Zenith +[1,04], {00911}, Quantum +[1,05], {00919}, Orion +[1,06], {00509}, Drift +[1,07], {00367}, Blaze +[1,08], {00786}, Spectrum +[1,09], {00822}, Meteor +[1,10], {00455}, Crystal +[1,11], {00749}, Shadow +[2,01], {00719}, Vertex +[2,02], {00367}, Vertex +[2,03], {00144}, Cascade +[2,04], {00500}, Prism +[2,05], {00243}, Matrix +[2,06], {00540}, Glacier +[2,07], {00683}, Spectrum +[2,08], {00257}, Glacier +[2,09], {00649}, Nova +[2,10], {00407}, Crystal +[2,11], {00582}, Sol +[3,01], {00897}, Borealis +[3,02], {00910}, Horizon +[3,03], {00440}, Apollo +[3,04], {00000}, UNUSED +[3,05], {00252}, Blaze +[3,06], {00645}, Beacon +[3,07], {00268}, Spectrum +[3,08], {00723}, Zephyr +[3,09], {00101}, Spectrum +[3,10], {00673}, Nimbus +[3,11], {00000}, UNUSED +[4,01], {00365}, Zenith +[4,02], {00751}, Apollo +[4,03], {00217}, Arcadia +[4,04], {00000}, UNUSED +[4,05], {00599}, Gravity +[4,06], {00912}, Apollo +[4,07], {00925}, Aurora +[4,08], {00132}, Atlas +[4,09], {00832}, Zenith +[4,10], {00781}, Cosmos +[4,11], {00000}, UNUSED +[5,01], {00830}, Phoenix +[5,02], {00992}, Lunar +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00429}, Prism +[5,06], {00874}, Spectrum +[5,07], {00000}, UNUSED +[5,08], {00308}, Polaris +[5,09], {00000}, UNUSED +[5,10], {00984}, Nova +[5,11], {00000}, UNUSED +[6,01], {00382}, Eclipse +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00249}, Borealis +[6,06], {00530}, Nova +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00946}, Orion +[6,11], {00000}, UNUSED +[7,01], {00723}, Glacier +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00222}, Orion +[7,06], {00980}, Nova +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00861}, Velocity +[7,11], {00000}, UNUSED +[8,01], {00556}, Tesla +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00539}, Vertex +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/57Containers.txt b/57Containers.txt new file mode 100644 index 0000000..e5069c2 --- /dev/null +++ b/57Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00512}, Radiance +[1,02], {00835}, Dynamo +[1,03], {00957}, Singularity +[1,04], {00923}, Velocity +[1,05], {00443}, Blaze +[1,06], {00403}, Neptune +[1,07], {00723}, Everest +[1,08], {00777}, Drift +[1,09], {00382}, Quantum +[1,10], {00553}, Everest +[1,11], {00109}, Vertex +[2,01], {00457}, Prism +[2,02], {00325}, Tectonic +[2,03], {00139}, Orion +[2,04], {00881}, Tectonic +[2,05], {00488}, Stardust +[2,06], {00640}, Shard +[2,07], {00635}, Comet +[2,08], {00864}, Arcadia +[2,09], {00751}, Circuit +[2,10], {00461}, Blaze +[2,11], {00979}, Glacier +[3,01], {00934}, Orion +[3,02], {00159}, Titan +[3,03], {00916}, Crystal +[3,04], {00207}, Singularity +[3,05], {00957}, Shard +[3,06], {00305}, Glider +[3,07], {00635}, Cascade +[3,08], {00000}, UNUSED +[3,09], {00517}, Nova +[3,10], {00780}, Comet +[3,11], {00475}, Zenith +[4,01], {00000}, UNUSED +[4,02], {00857}, Atlas +[4,03], {00500}, Matrix +[4,04], {00759}, Circuit +[4,05], {00683}, Gravity +[4,06], {00176}, Echo +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00868}, Vortex +[4,10], {00217}, Ember +[4,11], {00801}, Shard +[5,01], {00000}, UNUSED +[5,02], {00826}, Apollo +[5,03], {00182}, Quantum +[5,04], {00513}, Nexus +[5,05], {00893}, Horizon +[5,06], {00941}, Ember +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00952}, Aero +[5,11], {00597}, Zenith +[6,01], {00000}, UNUSED +[6,02], {00278}, Glacier +[6,03], {00824}, Forge +[6,04], {00000}, UNUSED +[6,05], {00336}, Aurora +[6,06], {00177}, Beacon +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00402}, Nimbus +[6,11], {00434}, Singularity +[7,01], {00000}, UNUSED +[7,02], {00831}, Vortex +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00602}, Lunar +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00479}, Blaze +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00172}, Radiance +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/58Containers.txt b/58Containers.txt new file mode 100644 index 0000000..5733ac5 --- /dev/null +++ b/58Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00858}, Nexus +[1,02], {00889}, Circuit +[1,03], {00700}, Voyager +[1,04], {00745}, Everest +[1,05], {00505}, Aero +[1,06], {00460}, Echo +[1,07], {00613}, Eclipse +[1,08], {00748}, Radiance +[1,09], {00387}, Aero +[1,10], {00871}, Axis +[1,11], {00305}, Drift +[2,01], {00354}, Gravity +[2,02], {00184}, Shadow +[2,03], {00598}, Zenith +[2,04], {00596}, Glacier +[2,05], {00228}, Matrix +[2,06], {00684}, Cyclone +[2,07], {00261}, Halo +[2,08], {00751}, Infinity +[2,09], {00357}, Inferno +[2,10], {00712}, Infinity +[2,11], {00397}, Nexus +[3,01], {00516}, Blaze +[3,02], {00425}, Neptune +[3,03], {00427}, Solstice +[3,04], {00818}, Odyssey +[3,05], {00358}, Mirage +[3,06], {00455}, Sol +[3,07], {00306}, Vertex +[3,08], {00986}, Ember +[3,09], {00247}, Lunar +[3,10], {00194}, Quantum +[3,11], {00438}, Nova +[4,01], {00135}, Quantum +[4,02], {00000}, UNUSED +[4,03], {00676}, Vortex +[4,04], {00461}, Spectrum +[4,05], {00573}, Inferno +[4,06], {00000}, UNUSED +[4,07], {00617}, Glacier +[4,08], {00459}, Cosmos +[4,09], {00413}, Vertex +[4,10], {00285}, Echo +[4,11], {00356}, Forge +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00882}, Dynamo +[5,04], {00382}, Echo +[5,05], {00571}, Vertex +[5,06], {00000}, UNUSED +[5,07], {00620}, Meteor +[5,08], {00000}, UNUSED +[5,09], {00677}, Everest +[5,10], {00426}, Zenith +[5,11], {00349}, Prism +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00325}, Zephyr +[6,04], {00885}, Solstice +[6,05], {00159}, Cascade +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00826}, Cascade +[6,11], {00784}, Shadow +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00953}, Nimbus +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00276}, Voyager +[7,11], {00685}, Inferno +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00281}, Echo +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/59Containers.txt b/59Containers.txt new file mode 100644 index 0000000..20c200e --- /dev/null +++ b/59Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00483}, Spectrum +[1,02], {00558}, Twilight +[1,03], {00505}, Axis +[1,04], {00959}, Comet +[1,05], {00853}, Everest +[1,06], {00278}, Titan +[1,07], {00676}, Orion +[1,08], {00451}, Inferno +[1,09], {00912}, Neptune +[1,10], {00111}, Comet +[1,11], {00198}, Borealis +[2,01], {00199}, Spectrum +[2,02], {00454}, Polaris +[2,03], {00257}, Sol +[2,04], {00229}, Zenith +[2,05], {00401}, Beacon +[2,06], {00999}, Orion +[2,07], {00361}, Spectrum +[2,08], {00825}, Singularity +[2,09], {00407}, Nova +[2,10], {00642}, Cosmos +[2,11], {00745}, Echo +[3,01], {00684}, Meteor +[3,02], {00136}, Apollo +[3,03], {00674}, Horizon +[3,04], {00578}, Aurora +[3,05], {00620}, Quantum +[3,06], {00419}, Everest +[3,07], {00179}, Circuit +[3,08], {00256}, Velocity +[3,09], {00520}, Glacier +[3,10], {00429}, Spectrum +[3,11], {00358}, Borealis +[4,01], {00000}, UNUSED +[4,02], {00686}, Twilight +[4,03], {00655}, Orion +[4,04], {00980}, Spectrum +[4,05], {00280}, Crystal +[4,06], {00263}, Comet +[4,07], {00000}, UNUSED +[4,08], {00125}, Cascade +[4,09], {00509}, Infinity +[4,10], {00154}, Aurora +[4,11], {00267}, Solstice +[5,01], {00000}, UNUSED +[5,02], {00404}, Arcadia +[5,03], {00000}, UNUSED +[5,04], {00447}, Polaris +[5,05], {00000}, UNUSED +[5,06], {00397}, Odyssey +[5,07], {00000}, UNUSED +[5,08], {00241}, Twilight +[5,09], {00644}, Spectrum +[5,10], {00317}, Solstice +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00564}, Drift +[6,03], {00000}, UNUSED +[6,04], {00507}, Sol +[6,05], {00000}, UNUSED +[6,06], {00324}, Borealis +[6,07], {00000}, UNUSED +[6,08], {00765}, Titan +[6,09], {00917}, Voyager +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00837}, Polaris +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00886}, Echo +[7,09], {00538}, Radiance +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00858}, Tectonic +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00608}, Velocity +[8,09], {00789}, Lunar +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/60Containers.txt b/60Containers.txt new file mode 100644 index 0000000..9ac1746 --- /dev/null +++ b/60Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00288}, Lunar +[1,02], {00910}, Arcadia +[1,03], {00822}, Comet +[1,04], {00579}, Zenith +[1,05], {00641}, Odyssey +[1,06], {00916}, Odyssey +[1,07], {00206}, Shadow +[1,08], {00758}, Aurora +[1,09], {00653}, Radiance +[1,10], {00702}, Vortex +[1,11], {00986}, Halo +[2,01], {00149}, Eclipse +[2,02], {00000}, UNUSED +[2,03], {00597}, Zenith +[2,04], {00494}, Radiance +[2,05], {00777}, Blaze +[2,06], {00317}, Eclipse +[2,07], {00391}, Shard +[2,08], {00326}, Vertex +[2,09], {00748}, Cyclone +[2,10], {00952}, Vertex +[2,11], {00642}, Drift +[3,01], {00545}, Aurora +[3,02], {00000}, UNUSED +[3,03], {00613}, Solstice +[3,04], {00732}, Twilight +[3,05], {00358}, Forge +[3,06], {00445}, Borealis +[3,07], {00351}, Ember +[3,08], {00805}, Lunar +[3,09], {00557}, Borealis +[3,10], {00431}, Tesla +[3,11], {00774}, Cyclone +[4,01], {00479}, Tesla +[4,02], {00000}, UNUSED +[4,03], {00170}, Horizon +[4,04], {00951}, Nova +[4,05], {00934}, Tectonic +[4,06], {00319}, Aurora +[4,07], {00137}, Circuit +[4,08], {00000}, UNUSED +[4,09], {00486}, Velocity +[4,10], {00375}, Forge +[4,11], {00000}, UNUSED +[5,01], {00432}, Borealis +[5,02], {00000}, UNUSED +[5,03], {00938}, Spectrum +[5,04], {00518}, Cosmos +[5,05], {00768}, Zephyr +[5,06], {00357}, Horizon +[5,07], {00287}, Zenith +[5,08], {00000}, UNUSED +[5,09], {00238}, Singularity +[5,10], {00566}, Inferno +[5,11], {00000}, UNUSED +[6,01], {00968}, Nova +[6,02], {00000}, UNUSED +[6,03], {00897}, Nimbus +[6,04], {00905}, Meteor +[6,05], {00733}, Axis +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00756}, Shard +[6,10], {00605}, Nexus +[6,11], {00000}, UNUSED +[7,01], {00294}, Echo +[7,02], {00000}, UNUSED +[7,03], {00998}, Everest +[7,04], {00000}, UNUSED +[7,05], {00558}, Beacon +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00835}, Shard +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00198}, Tectonic +[8,04], {00000}, UNUSED +[8,05], {00156}, Crystal +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00541}, Singularity +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/61Containers.txt b/61Containers.txt new file mode 100644 index 0000000..34ac3b0 --- /dev/null +++ b/61Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00613}, Eclipse +[1,02], {00666}, Quantum +[1,03], {00303}, Tesla +[1,04], {00802}, Mirage +[1,05], {00374}, Shadow +[1,06], {00188}, Zenith +[1,07], {00261}, Solstice +[1,08], {00690}, Axis +[1,09], {00744}, Atlas +[1,10], {00493}, Mirage +[1,11], {00401}, Atlas +[2,01], {00283}, Twilight +[2,02], {00464}, Odyssey +[2,03], {00996}, Glider +[2,04], {00751}, Spectrum +[2,05], {00746}, Spectrum +[2,06], {00137}, Matrix +[2,07], {00659}, Dynamo +[2,08], {00165}, Zenith +[2,09], {00723}, Shadow +[2,10], {00487}, Shadow +[2,11], {00907}, Spectrum +[3,01], {00718}, Circuit +[3,02], {00731}, Velocity +[3,03], {00104}, Crystal +[3,04], {00657}, Nimbus +[3,05], {00249}, Shard +[3,06], {00887}, Phoenix +[3,07], {00221}, Velocity +[3,08], {00693}, Eclipse +[3,09], {00000}, UNUSED +[3,10], {00387}, Glider +[3,11], {00872}, Echo +[4,01], {00328}, Eclipse +[4,02], {00328}, Infinity +[4,03], {00914}, Voyager +[4,04], {00183}, Solstice +[4,05], {00631}, Spectrum +[4,06], {00754}, Polaris +[4,07], {00649}, Eclipse +[4,08], {00699}, Zenith +[4,09], {00000}, UNUSED +[4,10], {00307}, Sol +[4,11], {00199}, Zephyr +[5,01], {00000}, UNUSED +[5,02], {00809}, Everest +[5,03], {00118}, Cyclone +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00821}, Apollo +[5,07], {00100}, Solstice +[5,08], {00389}, Velocity +[5,09], {00000}, UNUSED +[5,10], {00405}, Phoenix +[5,11], {00958}, Gravity +[6,01], {00000}, UNUSED +[6,02], {00797}, Mirage +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00376}, Mirage +[6,07], {00439}, Gravity +[6,08], {00294}, Horizon +[6,09], {00000}, UNUSED +[6,10], {00632}, Mirage +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00869}, Aero +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00729}, Lunar +[7,08], {00540}, Arcadia +[7,09], {00000}, UNUSED +[7,10], {00245}, Stardust +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00705}, Infinity +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00997}, Crystal +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00951}, Vertex +[8,11], {00000}, UNUSED diff --git a/62Containers.txt b/62Containers.txt new file mode 100644 index 0000000..601370a --- /dev/null +++ b/62Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00562}, Zenith +[1,02], {00939}, Beacon +[1,03], {00349}, Neptune +[1,04], {00442}, Drift +[1,05], {00588}, Spectrum +[1,06], {00185}, Neptune +[1,07], {00549}, Tesla +[1,08], {00249}, Zephyr +[1,09], {00162}, Borealis +[1,10], {00210}, Velocity +[1,11], {00654}, Singularity +[2,01], {00683}, Velocity +[2,02], {00959}, Nimbus +[2,03], {00278}, Voyager +[2,04], {00926}, Twilight +[2,05], {00122}, Everest +[2,06], {00513}, Shadow +[2,07], {00625}, Odyssey +[2,08], {00810}, Glider +[2,09], {00398}, Crystal +[2,10], {00975}, Comet +[2,11], {00342}, Apollo +[3,01], {00834}, Singularity +[3,02], {00933}, Neptune +[3,03], {00585}, Tectonic +[3,04], {00149}, Velocity +[3,05], {00903}, Voyager +[3,06], {00669}, Arcadia +[3,07], {00618}, Horizon +[3,08], {00760}, Horizon +[3,09], {00962}, Borealis +[3,10], {00929}, Atlas +[3,11], {00145}, Mirage +[4,01], {00427}, Vertex +[4,02], {00430}, Axis +[4,03], {00175}, Spectrum +[4,04], {00342}, Velocity +[4,05], {00361}, Twilight +[4,06], {00909}, Stardust +[4,07], {00966}, Aero +[4,08], {00992}, Echo +[4,09], {00380}, Prism +[4,10], {00591}, Shard +[4,11], {00903}, Axis +[5,01], {00124}, Zephyr +[5,02], {00818}, Cosmos +[5,03], {00494}, Cyclone +[5,04], {00117}, Horizon +[5,05], {00423}, Drift +[5,06], {00000}, UNUSED +[5,07], {00281}, Titan +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00751}, Vertex +[6,01], {00000}, UNUSED +[6,02], {00786}, Prism +[6,03], {00436}, Twilight +[6,04], {00611}, Neptune +[6,05], {00644}, Twilight +[6,06], {00000}, UNUSED +[6,07], {00861}, Spectrum +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00752}, Sol +[7,01], {00000}, UNUSED +[7,02], {00954}, Singularity +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00978}, Titan +[7,06], {00000}, UNUSED +[7,07], {00475}, Shard +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00335}, Meteor +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00793}, Singularity +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/63Containers.txt b/63Containers.txt new file mode 100644 index 0000000..977ff09 --- /dev/null +++ b/63Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00377}, Vertex +[1,02], {00671}, Vertex +[1,03], {00704}, Mirage +[1,04], {00767}, Eclipse +[1,05], {00872}, Neptune +[1,06], {00781}, Arcadia +[1,07], {00661}, Polaris +[1,08], {00887}, Everest +[1,09], {00997}, Shadow +[1,10], {00415}, Cascade +[1,11], {00249}, Shard +[2,01], {00865}, Apollo +[2,02], {00635}, Spectrum +[2,03], {00730}, Singularity +[2,04], {00193}, Horizon +[2,05], {00781}, Horizon +[2,06], {00000}, UNUSED +[2,07], {00239}, Nexus +[2,08], {00543}, Eclipse +[2,09], {00610}, Echo +[2,10], {00705}, Borealis +[2,11], {00773}, Cyclone +[3,01], {00635}, Quantum +[3,02], {00158}, Tesla +[3,03], {00328}, Tectonic +[3,04], {00598}, Vertex +[3,05], {00443}, Solstice +[3,06], {00000}, UNUSED +[3,07], {00959}, Atlas +[3,08], {00219}, Matrix +[3,09], {00159}, Spectrum +[3,10], {00808}, Stardust +[3,11], {00351}, Nimbus +[4,01], {00121}, Cascade +[4,02], {00749}, Sol +[4,03], {00284}, Gravity +[4,04], {00688}, Radiance +[4,05], {00419}, Velocity +[4,06], {00000}, UNUSED +[4,07], {00522}, Spectrum +[4,08], {00284}, Zenith +[4,09], {00262}, Axis +[4,10], {00129}, Aurora +[4,11], {00379}, Polaris +[5,01], {00489}, Phoenix +[5,02], {00303}, Halo +[5,03], {00935}, Vortex +[5,04], {00161}, Singularity +[5,05], {00897}, Cyclone +[5,06], {00000}, UNUSED +[5,07], {00416}, Echo +[5,08], {00968}, Echo +[5,09], {00000}, UNUSED +[5,10], {00268}, Vertex +[5,11], {00707}, Drift +[6,01], {00638}, Echo +[6,02], {00000}, UNUSED +[6,03], {00937}, Borealis +[6,04], {00862}, Arcadia +[6,05], {00315}, Radiance +[6,06], {00000}, UNUSED +[6,07], {00479}, Sol +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00427}, Shard +[6,11], {00763}, Mirage +[7,01], {00745}, Inferno +[7,02], {00000}, UNUSED +[7,03], {00981}, Velocity +[7,04], {00000}, UNUSED +[7,05], {00931}, Ember +[7,06], {00000}, UNUSED +[7,07], {00458}, Crystal +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00461}, Nova +[8,06], {00000}, UNUSED +[8,07], {00942}, Lunar +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/64Containers.txt b/64Containers.txt new file mode 100644 index 0000000..3cfd2f2 --- /dev/null +++ b/64Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00148}, Aero +[1,02], {00759}, Aero +[1,03], {00968}, Eclipse +[1,04], {00248}, Drift +[1,05], {00901}, Eclipse +[1,06], {00460}, Zephyr +[1,07], {00486}, Spectrum +[1,08], {00298}, Shadow +[1,09], {00775}, Everest +[1,10], {00389}, Vertex +[1,11], {00789}, Cyclone +[2,01], {00156}, Stardust +[2,02], {00902}, Velocity +[2,03], {00129}, Twilight +[2,04], {00751}, Tectonic +[2,05], {00803}, Circuit +[2,06], {00114}, Sol +[2,07], {00877}, Spectrum +[2,08], {00565}, Velocity +[2,09], {00771}, Forge +[2,10], {00947}, Vertex +[2,11], {00372}, Tectonic +[3,01], {00694}, Apollo +[3,02], {00770}, Glacier +[3,03], {00204}, Vertex +[3,04], {00626}, Prism +[3,05], {00943}, Atlas +[3,06], {00226}, Drift +[3,07], {00568}, Nexus +[3,08], {00780}, Spectrum +[3,09], {00710}, Vertex +[3,10], {00870}, Titan +[3,11], {00640}, Spectrum +[4,01], {00406}, Glider +[4,02], {00563}, Shadow +[4,03], {00000}, UNUSED +[4,04], {00957}, Cosmos +[4,05], {00939}, Zephyr +[4,06], {00824}, Ember +[4,07], {00576}, Arcadia +[4,08], {00951}, Voyager +[4,09], {00263}, Titan +[4,10], {00158}, Nova +[4,11], {00765}, Vortex +[5,01], {00000}, UNUSED +[5,02], {00396}, Glider +[5,03], {00000}, UNUSED +[5,04], {00718}, Horizon +[5,05], {00950}, Eclipse +[5,06], {00547}, Shadow +[5,07], {00765}, Comet +[5,08], {00973}, Velocity +[5,09], {00432}, Zenith +[5,10], {00000}, UNUSED +[5,11], {00621}, Atlas +[6,01], {00000}, UNUSED +[6,02], {00430}, Vertex +[6,03], {00000}, UNUSED +[6,04], {00524}, Halo +[6,05], {00218}, Circuit +[6,06], {00329}, Shard +[6,07], {00000}, UNUSED +[6,08], {00453}, Comet +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00373}, Odyssey +[7,01], {00000}, UNUSED +[7,02], {00338}, Horizon +[7,03], {00000}, UNUSED +[7,04], {00403}, Glider +[7,05], {00214}, Arcadia +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00992}, Infinity +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00253}, Cosmos +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00307}, Voyager +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00558}, Borealis diff --git a/65Containers.txt b/65Containers.txt new file mode 100644 index 0000000..8f7df3d --- /dev/null +++ b/65Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00323}, Cascade +[1,02], {00616}, Glacier +[1,03], {00262}, Prism +[1,04], {00195}, Velocity +[1,05], {00691}, Circuit +[1,06], {00751}, Spectrum +[1,07], {00245}, Voyager +[1,08], {00384}, Velocity +[1,09], {00717}, Radiance +[1,10], {00515}, Velocity +[1,11], {00405}, Echo +[2,01], {00913}, Ember +[2,02], {00273}, Circuit +[2,03], {00249}, Shard +[2,04], {00612}, Spectrum +[2,05], {00959}, Prism +[2,06], {00737}, Nimbus +[2,07], {00900}, Cascade +[2,08], {00791}, Crystal +[2,09], {00810}, Orion +[2,10], {00226}, Dynamo +[2,11], {00610}, Echo +[3,01], {00694}, Polaris +[3,02], {00910}, Forge +[3,03], {00437}, Glider +[3,04], {00190}, Glacier +[3,05], {00807}, Eclipse +[3,06], {00776}, Horizon +[3,07], {00810}, Nova +[3,08], {00158}, Forge +[3,09], {00957}, Dynamo +[3,10], {00675}, Orion +[3,11], {00808}, Titan +[4,01], {00266}, Mirage +[4,02], {00505}, Horizon +[4,03], {00334}, Horizon +[4,04], {00712}, Circuit +[4,05], {00417}, Spectrum +[4,06], {00766}, Infinity +[4,07], {00682}, Beacon +[4,08], {00000}, UNUSED +[4,09], {00747}, Blaze +[4,10], {00632}, Mirage +[4,11], {00721}, Zenith +[5,01], {00191}, Spectrum +[5,02], {00143}, Velocity +[5,03], {00955}, Vertex +[5,04], {00197}, Meteor +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00977}, Sol +[5,08], {00000}, UNUSED +[5,09], {00807}, Nexus +[5,10], {00303}, Glider +[5,11], {00568}, Spectrum +[6,01], {00364}, Circuit +[6,02], {00601}, Odyssey +[6,03], {00389}, Velocity +[6,04], {00701}, Twilight +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00730}, Singularity +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00107}, Horizon +[6,11], {00000}, UNUSED +[7,01], {00315}, Horizon +[7,02], {00108}, Borealis +[7,03], {00000}, UNUSED +[7,04], {00949}, Velocity +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00593}, Velocity +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00916}, Borealis +[7,11], {00000}, UNUSED +[8,01], {00352}, Comet +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00969}, Ember +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00997}, Halo +[8,11], {00000}, UNUSED diff --git a/66Containers.txt b/66Containers.txt new file mode 100644 index 0000000..fa4121c --- /dev/null +++ b/66Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00377}, Circuit +[1,02], {00255}, Neptune +[1,03], {00590}, Spectrum +[1,04], {00341}, Beacon +[1,05], {00228}, Aero +[1,06], {00949}, Phoenix +[1,07], {00968}, Zephyr +[1,08], {00855}, Velocity +[1,09], {00200}, Cascade +[1,10], {00556}, Horizon +[1,11], {00355}, Spectrum +[2,01], {00963}, Twilight +[2,02], {00823}, Meteor +[2,03], {00651}, Glider +[2,04], {00389}, Mirage +[2,05], {00465}, Orion +[2,06], {00496}, Velocity +[2,07], {00836}, Spectrum +[2,08], {00593}, Echo +[2,09], {00316}, Aero +[2,10], {00245}, Blaze +[2,11], {00697}, Eclipse +[3,01], {00982}, Horizon +[3,02], {00152}, Twilight +[3,03], {00806}, Tesla +[3,04], {00742}, Horizon +[3,05], {00106}, Orion +[3,06], {00741}, Singularity +[3,07], {00676}, Gravity +[3,08], {00955}, Spectrum +[3,09], {00284}, Aero +[3,10], {00992}, Odyssey +[3,11], {00274}, Spectrum +[4,01], {00788}, Cascade +[4,02], {00410}, Matrix +[4,03], {00920}, Nova +[4,04], {00197}, Aurora +[4,05], {00341}, Odyssey +[4,06], {00742}, Zenith +[4,07], {00800}, Echo +[4,08], {00933}, Singularity +[4,09], {00127}, Aero +[4,10], {00129}, Beacon +[4,11], {00231}, Twilight +[5,01], {00807}, Vertex +[5,02], {00948}, Quantum +[5,03], {00714}, Spectrum +[5,04], {00900}, Phoenix +[5,05], {00353}, Inferno +[5,06], {00493}, Comet +[5,07], {00712}, Meteor +[5,08], {00626}, Velocity +[5,09], {00293}, Circuit +[5,10], {00582}, Beacon +[5,11], {00836}, Zenith +[6,01], {00704}, Neptune +[6,02], {00000}, UNUSED +[6,03], {00283}, Apollo +[6,04], {00000}, UNUSED +[6,05], {00461}, Vertex +[6,06], {00596}, Drift +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00909}, Velocity +[7,01], {00644}, Lunar +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00503}, Twilight +[7,06], {00714}, Spectrum +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00782}, Solstice +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00431}, Cyclone +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00324}, Singularity diff --git a/67Containers.txt b/67Containers.txt new file mode 100644 index 0000000..03073e4 --- /dev/null +++ b/67Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00868}, Nimbus +[1,02], {00137}, Drift +[1,03], {00537}, Vertex +[1,04], {00893}, Quantum +[1,05], {00999}, Spectrum +[1,06], {00279}, Eclipse +[1,07], {00474}, Comet +[1,08], {00411}, Nimbus +[1,09], {00914}, Glacier +[1,10], {00448}, Ember +[1,11], {00681}, Cyclone +[2,01], {00564}, Echo +[2,02], {00273}, Tectonic +[2,03], {00446}, Gravity +[2,04], {00727}, Cosmos +[2,05], {00664}, Atlas +[2,06], {00988}, Aero +[2,07], {00259}, Apollo +[2,08], {00851}, Dynamo +[2,09], {00338}, Matrix +[2,10], {00520}, Titan +[2,11], {00000}, UNUSED +[3,01], {00673}, Vortex +[3,02], {00184}, Crystal +[3,03], {00713}, Zephyr +[3,04], {00699}, Vortex +[3,05], {00187}, Orion +[3,06], {00146}, Velocity +[3,07], {00151}, Zenith +[3,08], {00578}, Spectrum +[3,09], {00802}, Glacier +[3,10], {00000}, UNUSED +[3,11], {00000}, UNUSED +[4,01], {00532}, Horizon +[4,02], {00687}, Inferno +[4,03], {00136}, Nova +[4,04], {00248}, Vertex +[4,05], {00377}, Radiance +[4,06], {00634}, Everest +[4,07], {00392}, Beacon +[4,08], {00701}, Vortex +[4,09], {00800}, Zephyr +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00493}, Spectrum +[5,02], {00147}, Twilight +[5,03], {00112}, Eclipse +[5,04], {00828}, Twilight +[5,05], {00724}, Zephyr +[5,06], {00854}, Horizon +[5,07], {00904}, Spectrum +[5,08], {00148}, Infinity +[5,09], {00845}, Glider +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00708}, Prism +[6,02], {00854}, Titan +[6,03], {00881}, Singularity +[6,04], {00000}, UNUSED +[6,05], {00124}, Twilight +[6,06], {00872}, Tectonic +[6,07], {00951}, Cosmos +[6,08], {00424}, Drift +[6,09], {00490}, Odyssey +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00493}, Shadow +[7,02], {00475}, Vertex +[7,03], {00611}, Vortex +[7,04], {00000}, UNUSED +[7,05], {00378}, Zenith +[7,06], {00787}, Glacier +[7,07], {00527}, Drift +[7,08], {00894}, Nimbus +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00430}, Velocity +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00159}, Tectonic +[8,06], {00414}, Cyclone +[8,07], {00000}, UNUSED +[8,08], {00548}, Zenith +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/68Containers.txt b/68Containers.txt new file mode 100644 index 0000000..3898ce0 --- /dev/null +++ b/68Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00472}, Circuit +[1,02], {00854}, Shard +[1,03], {00706}, Glacier +[1,04], {00641}, Nexus +[1,05], {00455}, Zephyr +[1,06], {00525}, Orion +[1,07], {00698}, Circuit +[1,08], {00869}, Eclipse +[1,09], {00970}, Horizon +[1,10], {00360}, Sol +[1,11], {00514}, Mirage +[2,01], {00455}, Comet +[2,02], {00234}, Forge +[2,03], {00200}, Axis +[2,04], {00386}, Zenith +[2,05], {00716}, Apollo +[2,06], {00599}, Orion +[2,07], {00440}, Zenith +[2,08], {00971}, Cyclone +[2,09], {00322}, Spectrum +[2,10], {00288}, Eclipse +[2,11], {00000}, UNUSED +[3,01], {00543}, Tectonic +[3,02], {00554}, Shadow +[3,03], {00934}, Solstice +[3,04], {00253}, Tectonic +[3,05], {00958}, Vortex +[3,06], {00619}, Infinity +[3,07], {00524}, Shadow +[3,08], {00688}, Nexus +[3,09], {00471}, Nova +[3,10], {00108}, Lunar +[3,11], {00000}, UNUSED +[4,01], {00309}, Beacon +[4,02], {00683}, Nimbus +[4,03], {00194}, Glacier +[4,04], {00425}, Spectrum +[4,05], {00604}, Aero +[4,06], {00591}, Twilight +[4,07], {00216}, Blaze +[4,08], {00157}, Horizon +[4,09], {00515}, Prism +[4,10], {00437}, Solstice +[4,11], {00000}, UNUSED +[5,01], {00501}, Aurora +[5,02], {00566}, Tectonic +[5,03], {00685}, Singularity +[5,04], {00481}, Solstice +[5,05], {00461}, Mirage +[5,06], {00689}, Stardust +[5,07], {00245}, Cascade +[5,08], {00552}, Eclipse +[5,09], {00847}, Prism +[5,10], {00638}, Shadow +[5,11], {00000}, UNUSED +[6,01], {00407}, Phoenix +[6,02], {00000}, UNUSED +[6,03], {00630}, Crystal +[6,04], {00375}, Spectrum +[6,05], {00000}, UNUSED +[6,06], {00690}, Beacon +[6,07], {00848}, Zephyr +[6,08], {00752}, Dynamo +[6,09], {00144}, Lunar +[6,10], {00782}, Orion +[6,11], {00000}, UNUSED +[7,01], {00172}, Zenith +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00288}, Quantum +[7,07], {00000}, UNUSED +[7,08], {00880}, Aero +[7,09], {00766}, Zephyr +[7,10], {00144}, Zenith +[7,11], {00000}, UNUSED +[8,01], {00737}, Forge +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00248}, Neptune +[8,07], {00000}, UNUSED +[8,08], {00370}, Echo +[8,09], {00000}, UNUSED +[8,10], {00768}, Velocity +[8,11], {00000}, UNUSED diff --git a/69Containers.txt b/69Containers.txt new file mode 100644 index 0000000..37f5560 --- /dev/null +++ b/69Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00838}, Odyssey +[1,02], {00502}, Vertex +[1,03], {00443}, Matrix +[1,04], {00655}, Spectrum +[1,05], {00341}, Meteor +[1,06], {00880}, Solstice +[1,07], {00113}, Spectrum +[1,08], {00319}, Vortex +[1,09], {00809}, Arcadia +[1,10], {00301}, Aero +[1,11], {00218}, Cosmos +[2,01], {00707}, Blaze +[2,02], {00000}, UNUSED +[2,03], {00727}, Blaze +[2,04], {00356}, Halo +[2,05], {00575}, Blaze +[2,06], {00236}, Beacon +[2,07], {00708}, Cyclone +[2,08], {00938}, Gravity +[2,09], {00715}, Comet +[2,10], {00999}, Nexus +[2,11], {00389}, Tectonic +[3,01], {00333}, Axis +[3,02], {00000}, UNUSED +[3,03], {00217}, Halo +[3,04], {00148}, Matrix +[3,05], {00236}, Forge +[3,06], {00581}, Halo +[3,07], {00846}, Glider +[3,08], {00832}, Radiance +[3,09], {00131}, Tesla +[3,10], {00444}, Spectrum +[3,11], {00550}, Zenith +[4,01], {00413}, Twilight +[4,02], {00000}, UNUSED +[4,03], {00638}, Crystal +[4,04], {00326}, Eclipse +[4,05], {00568}, Drift +[4,06], {00290}, Zenith +[4,07], {00247}, Ember +[4,08], {00214}, Zephyr +[4,09], {00409}, Lunar +[4,10], {00663}, Stardust +[4,11], {00638}, Nova +[5,01], {00365}, Everest +[5,02], {00000}, UNUSED +[5,03], {00230}, Echo +[5,04], {00432}, Velocity +[5,05], {00181}, Quantum +[5,06], {00184}, Circuit +[5,07], {00972}, Odyssey +[5,08], {00572}, Vertex +[5,09], {00460}, Horizon +[5,10], {00630}, Spectrum +[5,11], {00000}, UNUSED +[6,01], {00402}, Cyclone +[6,02], {00000}, UNUSED +[6,03], {00657}, Zenith +[6,04], {00329}, Zenith +[6,05], {00342}, Lunar +[6,06], {00993}, Cosmos +[6,07], {00849}, Glider +[6,08], {00538}, Inferno +[6,09], {00491}, Echo +[6,10], {00818}, Lunar +[6,11], {00000}, UNUSED +[7,01], {00809}, Velocity +[7,02], {00000}, UNUSED +[7,03], {00999}, Dynamo +[7,04], {00794}, Vertex +[7,05], {00660}, Singularity +[7,06], {00000}, UNUSED +[7,07], {00976}, Dynamo +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00107}, Horizon +[7,11], {00000}, UNUSED +[8,01], {00351}, Odyssey +[8,02], {00000}, UNUSED +[8,03], {00133}, Everest +[8,04], {00371}, Nova +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00525}, Atlas +[8,11], {00000}, UNUSED diff --git a/70Containers.txt b/70Containers.txt new file mode 100644 index 0000000..10b7e02 --- /dev/null +++ b/70Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00447}, Matrix +[1,02], {00791}, Radiance +[1,03], {00547}, Eclipse +[1,04], {00415}, Voyager +[1,05], {00670}, Gravity +[1,06], {00857}, Zenith +[1,07], {00871}, Radiance +[1,08], {00986}, Zephyr +[1,09], {00708}, Matrix +[1,10], {00323}, Halo +[1,11], {00397}, Forge +[2,01], {00841}, Sol +[2,02], {00888}, Blaze +[2,03], {00413}, Echo +[2,04], {00108}, Circuit +[2,05], {00868}, Lunar +[2,06], {00838}, Tesla +[2,07], {00492}, Titan +[2,08], {00594}, Inferno +[2,09], {00144}, Glider +[2,10], {00588}, Zephyr +[2,11], {00907}, Ember +[3,01], {00207}, Arcadia +[3,02], {00470}, Singularity +[3,03], {00375}, Stardust +[3,04], {00473}, Echo +[3,05], {00787}, Shard +[3,06], {00756}, Cosmos +[3,07], {00519}, Matrix +[3,08], {00460}, Spectrum +[3,09], {00358}, Eclipse +[3,10], {00608}, Quantum +[3,11], {00741}, Spectrum +[4,01], {00179}, Apollo +[4,02], {00217}, Orion +[4,03], {00802}, Titan +[4,04], {00831}, Twilight +[4,05], {00472}, Dynamo +[4,06], {00841}, Nexus +[4,07], {00191}, Zenith +[4,08], {00995}, Tectonic +[4,09], {00229}, Aurora +[4,10], {00245}, Velocity +[4,11], {00340}, Twilight +[5,01], {00523}, Gravity +[5,02], {00000}, UNUSED +[5,03], {00169}, Everest +[5,04], {00858}, Echo +[5,05], {00854}, Quantum +[5,06], {00381}, Radiance +[5,07], {00000}, UNUSED +[5,08], {00946}, Horizon +[5,09], {00307}, Radiance +[5,10], {00710}, Forge +[5,11], {00978}, Prism +[6,01], {00577}, Phoenix +[6,02], {00000}, UNUSED +[6,03], {00201}, Apollo +[6,04], {00879}, Axis +[6,05], {00235}, Quantum +[6,06], {00713}, Vertex +[6,07], {00000}, UNUSED +[6,08], {00577}, Drift +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00169}, Glacier +[7,01], {00564}, Tesla +[7,02], {00000}, UNUSED +[7,03], {00518}, Forge +[7,04], {00000}, UNUSED +[7,05], {00535}, Aurora +[7,06], {00931}, Borealis +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00520}, Polaris +[8,01], {00876}, Glider +[8,02], {00000}, UNUSED +[8,03], {00645}, Titan +[8,04], {00000}, UNUSED +[8,05], {00502}, Solstice +[8,06], {00379}, Dynamo +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00125}, Horizon diff --git a/71Containers.txt b/71Containers.txt new file mode 100644 index 0000000..ba6f8cf --- /dev/null +++ b/71Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00804}, Everest +[1,02], {00100}, Singularity +[1,03], {00669}, Halo +[1,04], {00391}, Halo +[1,05], {00888}, Phoenix +[1,06], {00527}, Spectrum +[1,07], {00989}, Apollo +[1,08], {00996}, Solstice +[1,09], {00799}, Forge +[1,10], {00578}, Glider +[1,11], {00703}, Zenith +[2,01], {00726}, Drift +[2,02], {00449}, Atlas +[2,03], {00197}, Cosmos +[2,04], {00203}, Twilight +[2,05], {00789}, Horizon +[2,06], {00222}, Dynamo +[2,07], {00599}, Shard +[2,08], {00764}, Tectonic +[2,09], {00813}, Polaris +[2,10], {00315}, Prism +[2,11], {00502}, Halo +[3,01], {00478}, Lunar +[3,02], {00616}, Atlas +[3,03], {00329}, Spectrum +[3,04], {00845}, Circuit +[3,05], {00735}, Drift +[3,06], {00873}, Drift +[3,07], {00774}, Tectonic +[3,08], {00373}, Zenith +[3,09], {00228}, Glacier +[3,10], {00733}, Halo +[3,11], {00000}, UNUSED +[4,01], {00291}, Twilight +[4,02], {00630}, Beacon +[4,03], {00997}, Vertex +[4,04], {00844}, Shadow +[4,05], {00119}, Spectrum +[4,06], {00451}, Borealis +[4,07], {00310}, Axis +[4,08], {00726}, Aurora +[4,09], {00294}, Arcadia +[4,10], {00354}, Everest +[4,11], {00000}, UNUSED +[5,01], {00592}, Beacon +[5,02], {00317}, Nexus +[5,03], {00208}, Singularity +[5,04], {00750}, Shadow +[5,05], {00207}, Nexus +[5,06], {00663}, Drift +[5,07], {00996}, Lunar +[5,08], {00191}, Horizon +[5,09], {00803}, Shadow +[5,10], {00588}, Singularity +[5,11], {00000}, UNUSED +[6,01], {00555}, Zenith +[6,02], {00781}, Blaze +[6,03], {00211}, Zenith +[6,04], {00699}, Aero +[6,05], {00211}, Cosmos +[6,06], {00675}, Prism +[6,07], {00632}, Dynamo +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00288}, Prism +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00917}, Solstice +[7,03], {00946}, Twilight +[7,04], {00232}, Meteor +[7,05], {00875}, Eclipse +[7,06], {00000}, UNUSED +[7,07], {00925}, Cosmos +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00642}, Cosmos +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00671}, Aurora +[8,03], {00000}, UNUSED +[8,04], {00378}, Spectrum +[8,05], {00973}, Eclipse +[8,06], {00000}, UNUSED +[8,07], {00547}, Ember +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00369}, Meteor +[8,11], {00000}, UNUSED diff --git a/72Containers.txt b/72Containers.txt new file mode 100644 index 0000000..54ca3ab --- /dev/null +++ b/72Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00981}, Odyssey +[1,02], {00639}, Comet +[1,03], {00643}, Forge +[1,04], {00568}, Vertex +[1,05], {00101}, Orion +[1,06], {00188}, Everest +[1,07], {00505}, Prism +[1,08], {00352}, Crystal +[1,09], {00796}, Glider +[1,10], {00503}, Sol +[1,11], {00683}, Nova +[2,01], {00874}, Horizon +[2,02], {00758}, Atlas +[2,03], {00870}, Aero +[2,04], {00580}, Zenith +[2,05], {00618}, Cyclone +[2,06], {00549}, Ember +[2,07], {00869}, Matrix +[2,08], {00778}, Horizon +[2,09], {00355}, Tectonic +[2,10], {00485}, Zenith +[2,11], {00371}, Odyssey +[3,01], {00797}, Matrix +[3,02], {00268}, Voyager +[3,03], {00566}, Shadow +[3,04], {00191}, Solstice +[3,05], {00558}, Shard +[3,06], {00243}, Eclipse +[3,07], {00544}, Velocity +[3,08], {00000}, UNUSED +[3,09], {00654}, Twilight +[3,10], {00607}, Spectrum +[3,11], {00309}, Orion +[4,01], {00679}, Infinity +[4,02], {00000}, UNUSED +[4,03], {00323}, Odyssey +[4,04], {00867}, Meteor +[4,05], {00775}, Prism +[4,06], {00845}, Arcadia +[4,07], {00253}, Spectrum +[4,08], {00000}, UNUSED +[4,09], {00324}, Aero +[4,10], {00761}, Radiance +[4,11], {00554}, Gravity +[5,01], {00548}, Voyager +[5,02], {00000}, UNUSED +[5,03], {00607}, Odyssey +[5,04], {00431}, Spectrum +[5,05], {00382}, Tesla +[5,06], {00213}, Forge +[5,07], {00435}, Atlas +[5,08], {00000}, UNUSED +[5,09], {00657}, Voyager +[5,10], {00533}, Dynamo +[5,11], {00460}, Everest +[6,01], {00278}, Zephyr +[6,02], {00000}, UNUSED +[6,03], {00921}, Axis +[6,04], {00000}, UNUSED +[6,05], {00471}, Tectonic +[6,06], {00303}, Ember +[6,07], {00930}, Neptune +[6,08], {00000}, UNUSED +[6,09], {00533}, Prism +[6,10], {00200}, Spectrum +[6,11], {00479}, Spectrum +[7,01], {00825}, Inferno +[7,02], {00000}, UNUSED +[7,03], {00479}, Phoenix +[7,04], {00000}, UNUSED +[7,05], {00520}, Voyager +[7,06], {00454}, Cascade +[7,07], {00403}, Zenith +[7,08], {00000}, UNUSED +[7,09], {00558}, Phoenix +[7,10], {00137}, Solstice +[7,11], {00669}, Eclipse +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00542}, Nimbus +[8,06], {00906}, Echo +[8,07], {00339}, Shadow +[8,08], {00000}, UNUSED +[8,09], {00478}, Titan +[8,10], {00376}, Velocity +[8,11], {00515}, Aurora diff --git a/73Containers.txt b/73Containers.txt new file mode 100644 index 0000000..63522af --- /dev/null +++ b/73Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00848}, Titan +[1,02], {00876}, Zenith +[1,03], {00483}, Dynamo +[1,04], {00168}, Blaze +[1,05], {00298}, Circuit +[1,06], {00335}, Dynamo +[1,07], {00325}, Zenith +[1,08], {00629}, Zenith +[1,09], {00414}, Eclipse +[1,10], {00927}, Atlas +[1,11], {00544}, Forge +[2,01], {00397}, Ember +[2,02], {00628}, Lunar +[2,03], {00574}, Forge +[2,04], {00549}, Everest +[2,05], {00883}, Voyager +[2,06], {00222}, Echo +[2,07], {00366}, Drift +[2,08], {00629}, Titan +[2,09], {00317}, Voyager +[2,10], {00532}, Spectrum +[2,11], {00796}, Aero +[3,01], {00299}, Halo +[3,02], {00933}, Voyager +[3,03], {00457}, Sol +[3,04], {00933}, Crystal +[3,05], {00149}, Orion +[3,06], {00596}, Tesla +[3,07], {00395}, Halo +[3,08], {00282}, Velocity +[3,09], {00878}, Circuit +[3,10], {00974}, Blaze +[3,11], {00662}, Aero +[4,01], {01000}, Orion +[4,02], {00347}, Orion +[4,03], {00876}, Arcadia +[4,04], {00230}, Zephyr +[4,05], {00658}, Beacon +[4,06], {00607}, Inferno +[4,07], {00470}, Atlas +[4,08], {00674}, Borealis +[4,09], {00545}, Zenith +[4,10], {00215}, Forge +[4,11], {00243}, Crystal +[5,01], {00713}, Twilight +[5,02], {00771}, Lunar +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00384}, Lunar +[5,06], {00916}, Singularity +[5,07], {00207}, Spectrum +[5,08], {00173}, Apollo +[5,09], {00817}, Borealis +[5,10], {00502}, Velocity +[5,11], {00868}, Halo +[6,01], {00000}, UNUSED +[6,02], {00313}, Forge +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00892}, Aero +[6,06], {00000}, UNUSED +[6,07], {00266}, Singularity +[6,08], {00496}, Nexus +[6,09], {00370}, Dynamo +[6,10], {00693}, Dynamo +[6,11], {00428}, Tesla +[7,01], {00000}, UNUSED +[7,02], {00124}, Gravity +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00128}, Eclipse +[7,06], {00000}, UNUSED +[7,07], {00986}, Dynamo +[7,08], {00638}, Echo +[7,09], {00377}, Echo +[7,10], {00622}, Tectonic +[7,11], {00759}, Eclipse +[8,01], {00000}, UNUSED +[8,02], {00232}, Glider +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00993}, Aero +[8,06], {00000}, UNUSED +[8,07], {00879}, Orion +[8,08], {00000}, UNUSED +[8,09], {00605}, Prism +[8,10], {00767}, Solstice +[8,11], {00411}, Neptune diff --git a/74Containers.txt b/74Containers.txt new file mode 100644 index 0000000..f2b42f0 --- /dev/null +++ b/74Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00832}, Velocity +[1,02], {00956}, Titan +[1,03], {00523}, Horizon +[1,04], {00974}, Crystal +[1,05], {00668}, Forge +[1,06], {00922}, Meteor +[1,07], {00604}, Drift +[1,08], {00988}, Eclipse +[1,09], {00482}, Cascade +[1,10], {00632}, Cyclone +[1,11], {00844}, Drift +[2,01], {00884}, Twilight +[2,02], {00706}, Comet +[2,03], {00292}, Shard +[2,04], {00897}, Horizon +[2,05], {00246}, Circuit +[2,06], {00867}, Vertex +[2,07], {00210}, Dynamo +[2,08], {00303}, Zephyr +[2,09], {00665}, Cosmos +[2,10], {00166}, Velocity +[2,11], {00320}, Prism +[3,01], {00819}, Neptune +[3,02], {00897}, Lunar +[3,03], {00743}, Nova +[3,04], {00302}, Vortex +[3,05], {00799}, Nova +[3,06], {00663}, Shadow +[3,07], {00429}, Forge +[3,08], {00939}, Odyssey +[3,09], {00124}, Comet +[3,10], {00478}, Axis +[3,11], {00880}, Stardust +[4,01], {00662}, Solstice +[4,02], {00346}, Spectrum +[4,03], {00430}, Gravity +[4,04], {00850}, Glider +[4,05], {00231}, Glacier +[4,06], {00919}, Lunar +[4,07], {00491}, Quantum +[4,08], {00465}, Atlas +[4,09], {00938}, Atlas +[4,10], {00337}, Radiance +[4,11], {00000}, UNUSED +[5,01], {00791}, Nova +[5,02], {00329}, Zenith +[5,03], {00392}, Neptune +[5,04], {00306}, Aero +[5,05], {00687}, Forge +[5,06], {00998}, Odyssey +[5,07], {00431}, Everest +[5,08], {00000}, UNUSED +[5,09], {00316}, Vortex +[5,10], {00573}, Glacier +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00896}, Echo +[6,03], {00124}, Nova +[6,04], {00201}, Vertex +[6,05], {00670}, Infinity +[6,06], {00242}, Comet +[6,07], {00453}, Nexus +[6,08], {00000}, UNUSED +[6,09], {00675}, Cyclone +[6,10], {00938}, Matrix +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00535}, Forge +[7,03], {00955}, Circuit +[7,04], {00243}, Singularity +[7,05], {00177}, Spectrum +[7,06], {00304}, Drift +[7,07], {00690}, Infinity +[7,08], {00000}, UNUSED +[7,09], {00758}, Velocity +[7,10], {00542}, Twilight +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00473}, Twilight +[8,03], {00343}, Cosmos +[8,04], {00807}, Echo +[8,05], {00000}, UNUSED +[8,06], {00812}, Spectrum +[8,07], {00773}, Spectrum +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00854}, Nexus +[8,11], {00000}, UNUSED diff --git a/75Containers.txt b/75Containers.txt new file mode 100644 index 0000000..5963fde --- /dev/null +++ b/75Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00213}, Echo +[1,02], {00966}, Inferno +[1,03], {00605}, Zenith +[1,04], {00110}, Spectrum +[1,05], {00102}, Mirage +[1,06], {00671}, Circuit +[1,07], {00249}, Twilight +[1,08], {00358}, Axis +[1,09], {00261}, Sol +[1,10], {00934}, Orion +[1,11], {00626}, Solstice +[2,01], {00505}, Voyager +[2,02], {00798}, Sol +[2,03], {00608}, Axis +[2,04], {00908}, Titan +[2,05], {00651}, Odyssey +[2,06], {00439}, Blaze +[2,07], {00807}, Polaris +[2,08], {00357}, Tesla +[2,09], {00288}, Meteor +[2,10], {00846}, Drift +[2,11], {00820}, Borealis +[3,01], {00241}, Singularity +[3,02], {00444}, Zenith +[3,03], {00182}, Cosmos +[3,04], {00501}, Vortex +[3,05], {00301}, Echo +[3,06], {00928}, Orion +[3,07], {00397}, Horizon +[3,08], {00129}, Neptune +[3,09], {00980}, Radiance +[3,10], {00960}, Infinity +[3,11], {00530}, Dynamo +[4,01], {00994}, Solstice +[4,02], {00271}, Polaris +[4,03], {00816}, Vortex +[4,04], {00469}, Velocity +[4,05], {00172}, Gravity +[4,06], {00881}, Orion +[4,07], {00207}, Cyclone +[4,08], {00184}, Infinity +[4,09], {00597}, Atlas +[4,10], {00618}, Velocity +[4,11], {00533}, Cosmos +[5,01], {00587}, Polaris +[5,02], {00740}, Radiance +[5,03], {00910}, Stardust +[5,04], {00573}, Echo +[5,05], {00579}, Vortex +[5,06], {00000}, UNUSED +[5,07], {00533}, Cascade +[5,08], {00270}, Forge +[5,09], {00000}, UNUSED +[5,10], {00890}, Titan +[5,11], {00926}, Lunar +[6,01], {00184}, Nexus +[6,02], {00674}, Singularity +[6,03], {00704}, Crystal +[6,04], {00416}, Glacier +[6,05], {00702}, Eclipse +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00581}, Spectrum +[6,09], {00000}, UNUSED +[6,10], {00895}, Mirage +[6,11], {00381}, Aero +[7,01], {00422}, Everest +[7,02], {00913}, Cyclone +[7,03], {00000}, UNUSED +[7,04], {00578}, Ember +[7,05], {00364}, Drift +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00888}, Arcadia +[7,09], {00000}, UNUSED +[7,10], {00678}, Spectrum +[7,11], {00706}, Gravity +[8,01], {00573}, Crystal +[8,02], {00238}, Everest +[8,03], {00000}, UNUSED +[8,04], {00170}, Horizon +[8,05], {00231}, Axis +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00139}, Vertex +[8,09], {00000}, UNUSED +[8,10], {00611}, Nimbus +[8,11], {00565}, Velocity diff --git a/76Containers.txt b/76Containers.txt new file mode 100644 index 0000000..1273c24 --- /dev/null +++ b/76Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00775}, Circuit +[1,02], {00139}, Polaris +[1,03], {00287}, Vortex +[1,04], {00344}, Axis +[1,05], {00850}, Velocity +[1,06], {00977}, Radiance +[1,07], {00951}, Mirage +[1,08], {00532}, Solstice +[1,09], {00653}, Borealis +[1,10], {00600}, Phoenix +[1,11], {00490}, Cyclone +[2,01], {00976}, Mirage +[2,02], {00777}, Vertex +[2,03], {00660}, Odyssey +[2,04], {00816}, Vertex +[2,05], {00830}, Orion +[2,06], {00999}, Arcadia +[2,07], {00778}, Phoenix +[2,08], {00751}, Singularity +[2,09], {00133}, Solstice +[2,10], {00395}, Aurora +[2,11], {00167}, Spectrum +[3,01], {00505}, Infinity +[3,02], {00488}, Nimbus +[3,03], {00514}, Arcadia +[3,04], {00634}, Orion +[3,05], {00899}, Shadow +[3,06], {00872}, Comet +[3,07], {00792}, Twilight +[3,08], {00980}, Polaris +[3,09], {00477}, Cascade +[3,10], {00187}, Everest +[3,11], {00967}, Glider +[4,01], {00000}, UNUSED +[4,02], {00446}, Neptune +[4,03], {00993}, Matrix +[4,04], {00568}, Ember +[4,05], {00977}, Nova +[4,06], {00307}, Echo +[4,07], {00980}, Twilight +[4,08], {00912}, Borealis +[4,09], {00237}, Velocity +[4,10], {00920}, Titan +[4,11], {00540}, Tesla +[5,01], {00000}, UNUSED +[5,02], {00861}, Mirage +[5,03], {00663}, Beacon +[5,04], {00957}, Velocity +[5,05], {00420}, Cascade +[5,06], {00922}, Spectrum +[5,07], {00789}, Echo +[5,08], {00481}, Borealis +[5,09], {00923}, Cascade +[5,10], {00319}, Aurora +[5,11], {00850}, Zenith +[6,01], {00000}, UNUSED +[6,02], {00307}, Titan +[6,03], {00725}, Cyclone +[6,04], {00638}, Lunar +[6,05], {00396}, Nexus +[6,06], {00203}, Voyager +[6,07], {00654}, Singularity +[6,08], {00160}, Comet +[6,09], {00214}, Zenith +[6,10], {00369}, Borealis +[6,11], {00885}, Halo +[7,01], {00000}, UNUSED +[7,02], {00258}, Velocity +[7,03], {00784}, Nimbus +[7,04], {00836}, Tesla +[7,05], {00923}, Nimbus +[7,06], {00621}, Beacon +[7,07], {00000}, UNUSED +[7,08], {00412}, Phoenix +[7,09], {00197}, Everest +[7,10], {00867}, Shadow +[7,11], {00509}, Neptune +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00233}, Tesla +[8,04], {00000}, UNUSED +[8,05], {00749}, Cosmos +[8,06], {00491}, Comet +[8,07], {00000}, UNUSED +[8,08], {00301}, Cascade +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/77Containers.txt b/77Containers.txt new file mode 100644 index 0000000..5b5bad5 --- /dev/null +++ b/77Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00248}, Quantum +[1,02], {00875}, Titan +[1,03], {00827}, Vortex +[1,04], {00242}, Quantum +[1,05], {00822}, Vortex +[1,06], {00508}, Dynamo +[1,07], {00622}, Spectrum +[1,08], {00427}, Mirage +[1,09], {00668}, Radiance +[1,10], {00603}, Meteor +[1,11], {00663}, Comet +[2,01], {00105}, Zenith +[2,02], {00977}, Spectrum +[2,03], {00533}, Horizon +[2,04], {00791}, Arcadia +[2,05], {00829}, Voyager +[2,06], {00203}, Shard +[2,07], {00678}, Gravity +[2,08], {00345}, Echo +[2,09], {00862}, Tectonic +[2,10], {00211}, Shadow +[2,11], {00181}, Prism +[3,01], {00464}, Odyssey +[3,02], {00967}, Vertex +[3,03], {00428}, Solstice +[3,04], {00923}, Circuit +[3,05], {00445}, Nimbus +[3,06], {00636}, Borealis +[3,07], {00203}, Spectrum +[3,08], {00410}, Horizon +[3,09], {00728}, Drift +[3,10], {00610}, Velocity +[3,11], {00832}, Meteor +[4,01], {00908}, Horizon +[4,02], {00000}, UNUSED +[4,03], {00561}, Lunar +[4,04], {00170}, Glider +[4,05], {00506}, Velocity +[4,06], {00142}, Drift +[4,07], {00961}, Cosmos +[4,08], {00370}, Nimbus +[4,09], {00562}, Circuit +[4,10], {00759}, Zephyr +[4,11], {00206}, Zenith +[5,01], {00124}, Velocity +[5,02], {00000}, UNUSED +[5,03], {00315}, Spectrum +[5,04], {00719}, Apollo +[5,05], {00120}, Zenith +[5,06], {00272}, Aero +[5,07], {00986}, Mirage +[5,08], {00511}, Meteor +[5,09], {00910}, Shadow +[5,10], {00158}, Odyssey +[5,11], {00898}, Dynamo +[6,01], {00858}, Tectonic +[6,02], {00000}, UNUSED +[6,03], {00803}, Glacier +[6,04], {00406}, Infinity +[6,05], {00000}, UNUSED +[6,06], {00416}, Horizon +[6,07], {00570}, Tectonic +[6,08], {00937}, Velocity +[6,09], {00828}, Horizon +[6,10], {00620}, Blaze +[6,11], {00370}, Horizon +[7,01], {00953}, Odyssey +[7,02], {00000}, UNUSED +[7,03], {00731}, Zenith +[7,04], {00890}, Meteor +[7,05], {00000}, UNUSED +[7,06], {00965}, Cascade +[7,07], {00000}, UNUSED +[7,08], {00767}, Halo +[7,09], {00231}, Cosmos +[7,10], {00310}, Tesla +[7,11], {00384}, Circuit +[8,01], {00302}, Horizon +[8,02], {00000}, UNUSED +[8,03], {00700}, Shard +[8,04], {00317}, Vertex +[8,05], {00000}, UNUSED +[8,06], {00283}, Twilight +[8,07], {00000}, UNUSED +[8,08], {00847}, Echo +[8,09], {00129}, Atlas +[8,10], {00000}, UNUSED +[8,11], {00594}, Eclipse diff --git a/78Containers.txt b/78Containers.txt new file mode 100644 index 0000000..43d931a --- /dev/null +++ b/78Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00341}, Axis +[1,02], {00402}, Titan +[1,03], {00436}, Solstice +[1,04], {00552}, Blaze +[1,05], {00828}, Phoenix +[1,06], {00371}, Quantum +[1,07], {00827}, Zenith +[1,08], {00779}, Twilight +[1,09], {00692}, Glider +[1,10], {00531}, Odyssey +[1,11], {00973}, Nova +[2,01], {00924}, Aero +[2,02], {00475}, Sol +[2,03], {00463}, Polaris +[2,04], {00499}, Singularity +[2,05], {00281}, Glider +[2,06], {00304}, Inferno +[2,07], {00329}, Ember +[2,08], {00310}, Vertex +[2,09], {00842}, Prism +[2,10], {00541}, Comet +[2,11], {00927}, Quantum +[3,01], {00468}, Sol +[3,02], {00415}, Orion +[3,03], {00357}, Zenith +[3,04], {00545}, Prism +[3,05], {00248}, Cyclone +[3,06], {00208}, Zephyr +[3,07], {00625}, Everest +[3,08], {00484}, Eclipse +[3,09], {00867}, Inferno +[3,10], {00894}, Eclipse +[3,11], {00864}, Zenith +[4,01], {00603}, Circuit +[4,02], {00270}, Beacon +[4,03], {00661}, Halo +[4,04], {00161}, Lunar +[4,05], {00857}, Echo +[4,06], {00118}, Horizon +[4,07], {00622}, Tectonic +[4,08], {00183}, Halo +[4,09], {00908}, Drift +[4,10], {00934}, Sol +[4,11], {00734}, Drift +[5,01], {00437}, Gravity +[5,02], {00221}, Shadow +[5,03], {00899}, Quantum +[5,04], {00717}, Vertex +[5,05], {00843}, Horizon +[5,06], {00994}, Crystal +[5,07], {00000}, UNUSED +[5,08], {00221}, Lunar +[5,09], {00438}, Cascade +[5,10], {00695}, Circuit +[5,11], {00580}, Vortex +[6,01], {00727}, Forge +[6,02], {00755}, Everest +[6,03], {00000}, UNUSED +[6,04], {00547}, Zephyr +[6,05], {00173}, Gravity +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00736}, Stardust +[6,09], {00861}, Forge +[6,10], {00341}, Aurora +[6,11], {00758}, Vortex +[7,01], {00186}, Eclipse +[7,02], {00147}, Spectrum +[7,03], {00000}, UNUSED +[7,04], {00918}, Zenith +[7,05], {00422}, Vertex +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00819}, Lunar +[7,09], {00385}, Infinity +[7,10], {00410}, Velocity +[7,11], {00581}, Solstice +[8,01], {00463}, Meteor +[8,02], {00331}, Zenith +[8,03], {00000}, UNUSED +[8,04], {00648}, Phoenix +[8,05], {00673}, Everest +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00577}, Matrix +[8,09], {00519}, Nexus +[8,10], {00790}, Drift +[8,11], {00574}, Glacier diff --git a/79Containers.txt b/79Containers.txt new file mode 100644 index 0000000..65b4d03 --- /dev/null +++ b/79Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00216}, Echo +[1,02], {00601}, Horizon +[1,03], {00629}, Twilight +[1,04], {00351}, Everest +[1,05], {00990}, Vortex +[1,06], {00499}, Nexus +[1,07], {00496}, Sol +[1,08], {00368}, Shard +[1,09], {00694}, Blaze +[1,10], {00667}, Atlas +[1,11], {00946}, Dynamo +[2,01], {00121}, Gravity +[2,02], {00348}, Velocity +[2,03], {00721}, Glider +[2,04], {00254}, Phoenix +[2,05], {00905}, Zenith +[2,06], {00483}, Stardust +[2,07], {00884}, Forge +[2,08], {00504}, Drift +[2,09], {00638}, Glider +[2,10], {00165}, Voyager +[2,11], {00878}, Beacon +[3,01], {00635}, Phoenix +[3,02], {00951}, Halo +[3,03], {00429}, Singularity +[3,04], {00802}, Orion +[3,05], {00874}, Matrix +[3,06], {00219}, Zenith +[3,07], {00528}, Polaris +[3,08], {00917}, Arcadia +[3,09], {00912}, Aero +[3,10], {00170}, Cyclone +[3,11], {00978}, Glider +[4,01], {00893}, Inferno +[4,02], {00790}, Nexus +[4,03], {00883}, Eclipse +[4,04], {00129}, Zenith +[4,05], {00748}, Vertex +[4,06], {00995}, Cyclone +[4,07], {00877}, Lunar +[4,08], {00310}, Odyssey +[4,09], {00997}, Glacier +[4,10], {00608}, Aurora +[4,11], {00822}, Quantum +[5,01], {00210}, Echo +[5,02], {00319}, Everest +[5,03], {00930}, Sol +[5,04], {00506}, Shadow +[5,05], {00674}, Vertex +[5,06], {00341}, Cyclone +[5,07], {00403}, Crystal +[5,08], {00618}, Zenith +[5,09], {00853}, Neptune +[5,10], {00537}, Neptune +[5,11], {00407}, Velocity +[6,01], {00390}, Cyclone +[6,02], {00473}, Orion +[6,03], {00350}, Axis +[6,04], {00267}, Aero +[6,05], {00802}, Meteor +[6,06], {00838}, Halo +[6,07], {00951}, Beacon +[6,08], {00000}, UNUSED +[6,09], {00473}, Glider +[6,10], {00000}, UNUSED +[6,11], {00813}, Matrix +[7,01], {00336}, Eclipse +[7,02], {00000}, UNUSED +[7,03], {00547}, Stardust +[7,04], {00711}, Arcadia +[7,05], {00282}, Eclipse +[7,06], {00854}, Echo +[7,07], {00457}, Glider +[7,08], {00000}, UNUSED +[7,09], {00591}, Sol +[7,10], {00000}, UNUSED +[7,11], {00389}, Circuit +[8,01], {00352}, Aero +[8,02], {00000}, UNUSED +[8,03], {00261}, Voyager +[8,04], {00829}, Nova +[8,05], {00167}, Blaze +[8,06], {00830}, Nexus +[8,07], {00199}, Nova +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00184}, Aero diff --git a/80Containers.txt b/80Containers.txt new file mode 100644 index 0000000..bcbec4b --- /dev/null +++ b/80Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00953}, Spectrum +[1,02], {00137}, Nimbus +[1,03], {00137}, Phoenix +[1,04], {00942}, Quantum +[1,05], {00370}, Phoenix +[1,06], {00877}, Zephyr +[1,07], {00499}, Polaris +[1,08], {00666}, Borealis +[1,09], {00824}, Zenith +[1,10], {00573}, Radiance +[1,11], {00304}, Phoenix +[2,01], {00369}, Horizon +[2,02], {00487}, Nova +[2,03], {00874}, Aurora +[2,04], {00859}, Inferno +[2,05], {00775}, Zenith +[2,06], {00594}, Dynamo +[2,07], {00732}, Beacon +[2,08], {00759}, Orion +[2,09], {00504}, Solstice +[2,10], {00662}, Glider +[2,11], {00301}, Inferno +[3,01], {00626}, Prism +[3,02], {00685}, Polaris +[3,03], {00829}, Cyclone +[3,04], {00845}, Orion +[3,05], {00484}, Blaze +[3,06], {00244}, Horizon +[3,07], {00939}, Spectrum +[3,08], {00738}, Vortex +[3,09], {00857}, Velocity +[3,10], {00770}, Borealis +[3,11], {00368}, Comet +[4,01], {00921}, Drift +[4,02], {00974}, Aurora +[4,03], {00118}, Echo +[4,04], {00721}, Eclipse +[4,05], {00672}, Inferno +[4,06], {00522}, Matrix +[4,07], {00534}, Zenith +[4,08], {00873}, Stardust +[4,09], {00634}, Nexus +[4,10], {00634}, Echo +[4,11], {00244}, Vertex +[5,01], {00153}, Twilight +[5,02], {00609}, Arcadia +[5,03], {00504}, Radiance +[5,04], {00836}, Halo +[5,05], {00751}, Borealis +[5,06], {00827}, Spectrum +[5,07], {00248}, Matrix +[5,08], {00130}, Blaze +[5,09], {00239}, Quantum +[5,10], {00472}, Polaris +[5,11], {00000}, UNUSED +[6,01], {00354}, Echo +[6,02], {00709}, Tectonic +[6,03], {00443}, Phoenix +[6,04], {00300}, Quantum +[6,05], {00366}, Quantum +[6,06], {00981}, Blaze +[6,07], {00320}, Cyclone +[6,08], {00613}, Apollo +[6,09], {00625}, Vertex +[6,10], {00995}, Radiance +[6,11], {00000}, UNUSED +[7,01], {00790}, Shadow +[7,02], {00000}, UNUSED +[7,03], {00176}, Quantum +[7,04], {00603}, Tesla +[7,05], {00000}, UNUSED +[7,06], {00992}, Comet +[7,07], {00603}, Orion +[7,08], {00432}, Drift +[7,09], {00401}, Horizon +[7,10], {00302}, Zephyr +[7,11], {00000}, UNUSED +[8,01], {00345}, Tesla +[8,02], {00000}, UNUSED +[8,03], {00152}, Shard +[8,04], {00215}, Atlas +[8,05], {00000}, UNUSED +[8,06], {00957}, Velocity +[8,07], {00421}, Odyssey +[8,08], {00921}, Arcadia +[8,09], {00894}, Odyssey +[8,10], {00484}, Velocity +[8,11], {00000}, UNUSED diff --git a/81Containers.txt b/81Containers.txt new file mode 100644 index 0000000..9c0b026 --- /dev/null +++ b/81Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00917}, Infinity +[1,02], {00826}, Ember +[1,03], {00733}, Stardust +[1,04], {00409}, Sol +[1,05], {00962}, Apollo +[1,06], {00454}, Mirage +[1,07], {00963}, Zenith +[1,08], {00463}, Zenith +[1,09], {00518}, Blaze +[1,10], {00472}, Vortex +[1,11], {00179}, Vertex +[2,01], {00791}, Eclipse +[2,02], {00829}, Nova +[2,03], {00692}, Matrix +[2,04], {00627}, Inferno +[2,05], {00220}, Spectrum +[2,06], {00604}, Blaze +[2,07], {00921}, Circuit +[2,08], {00439}, Vertex +[2,09], {00198}, Tectonic +[2,10], {00383}, Inferno +[2,11], {00322}, Lunar +[3,01], {00180}, Cosmos +[3,02], {00665}, Vertex +[3,03], {00849}, Glacier +[3,04], {00669}, Phoenix +[3,05], {00753}, Matrix +[3,06], {00552}, Vertex +[3,07], {00893}, Twilight +[3,08], {00950}, Polaris +[3,09], {00902}, Drift +[3,10], {00560}, Zenith +[3,11], {00352}, Velocity +[4,01], {00882}, Infinity +[4,02], {00702}, Crystal +[4,03], {00689}, Circuit +[4,04], {00434}, Cascade +[4,05], {00819}, Sol +[4,06], {00554}, Vertex +[4,07], {00567}, Horizon +[4,08], {00634}, Echo +[4,09], {00390}, Nexus +[4,10], {00940}, Zenith +[4,11], {00850}, Vortex +[5,01], {00812}, Voyager +[5,02], {00215}, Tectonic +[5,03], {00637}, Orion +[5,04], {00486}, Titan +[5,05], {00134}, Zenith +[5,06], {00398}, Velocity +[5,07], {00774}, Axis +[5,08], {00307}, Horizon +[5,09], {00848}, Axis +[5,10], {00224}, Eclipse +[5,11], {00804}, Zenith +[6,01], {00000}, UNUSED +[6,02], {00897}, Vertex +[6,03], {00606}, Singularity +[6,04], {00505}, Spectrum +[6,05], {00570}, Nexus +[6,06], {00203}, Aurora +[6,07], {00321}, Aero +[6,08], {00280}, Comet +[6,09], {00270}, Eclipse +[6,10], {00784}, Crystal +[6,11], {00232}, Vertex +[7,01], {00000}, UNUSED +[7,02], {00468}, Stardust +[7,03], {00000}, UNUSED +[7,04], {00136}, Apollo +[7,05], {00414}, Sol +[7,06], {00544}, Prism +[7,07], {00443}, Vortex +[7,08], {00732}, Ember +[7,09], {00000}, UNUSED +[7,10], {00798}, Gravity +[7,11], {00909}, Infinity +[8,01], {00000}, UNUSED +[8,02], {00238}, Ember +[8,03], {00000}, UNUSED +[8,04], {00173}, Spectrum +[8,05], {00930}, Neptune +[8,06], {00267}, Matrix +[8,07], {00250}, Dynamo +[8,08], {00128}, Spectrum +[8,09], {00000}, UNUSED +[8,10], {00732}, Shard +[8,11], {00287}, Zenith diff --git a/82Containers.txt b/82Containers.txt new file mode 100644 index 0000000..3633a46 --- /dev/null +++ b/82Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00859}, Blaze +[1,02], {00111}, Matrix +[1,03], {00745}, Glider +[1,04], {00650}, Twilight +[1,05], {00155}, Echo +[1,06], {00182}, Tectonic +[1,07], {00954}, Ember +[1,08], {00507}, Velocity +[1,09], {00582}, Horizon +[1,10], {00741}, Shard +[1,11], {00849}, Everest +[2,01], {00417}, Inferno +[2,02], {00994}, Circuit +[2,03], {00172}, Everest +[2,04], {00792}, Shadow +[2,05], {00373}, Crystal +[2,06], {00479}, Zenith +[2,07], {00416}, Zenith +[2,08], {00155}, Radiance +[2,09], {00253}, Everest +[2,10], {00930}, Prism +[2,11], {00485}, Mirage +[3,01], {00636}, Nexus +[3,02], {00296}, Spectrum +[3,03], {00552}, Ember +[3,04], {00810}, Zenith +[3,05], {00539}, Arcadia +[3,06], {00354}, Twilight +[3,07], {00864}, Spectrum +[3,08], {00538}, Quantum +[3,09], {00426}, Twilight +[3,10], {00685}, Prism +[3,11], {00424}, Titan +[4,01], {00392}, Drift +[4,02], {00772}, Cyclone +[4,03], {00870}, Blaze +[4,04], {00438}, Eclipse +[4,05], {00225}, Shadow +[4,06], {00879}, Echo +[4,07], {00456}, Velocity +[4,08], {00633}, Beacon +[4,09], {01000}, Orion +[4,10], {00288}, Infinity +[4,11], {00636}, Halo +[5,01], {00395}, Blaze +[5,02], {00403}, Mirage +[5,03], {00995}, Horizon +[5,04], {00426}, Radiance +[5,05], {00991}, Eclipse +[5,06], {00777}, Velocity +[5,07], {00202}, Circuit +[5,08], {00448}, Axis +[5,09], {00822}, Shard +[5,10], {00676}, Glider +[5,11], {00806}, Ember +[6,01], {00858}, Arcadia +[6,02], {00759}, Comet +[6,03], {00243}, Shadow +[6,04], {00611}, Nova +[6,05], {00178}, Apollo +[6,06], {00000}, UNUSED +[6,07], {00908}, Nexus +[6,08], {00670}, Meteor +[6,09], {00956}, Vortex +[6,10], {00259}, Zenith +[6,11], {00345}, Vertex +[7,01], {00228}, Eclipse +[7,02], {00693}, Phoenix +[7,03], {00226}, Infinity +[7,04], {00655}, Orion +[7,05], {00827}, Cosmos +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00167}, Crystal +[7,09], {00246}, Drift +[7,10], {00223}, Eclipse +[7,11], {00154}, Stardust +[8,01], {00192}, Spectrum +[8,02], {00995}, Odyssey +[8,03], {00597}, Radiance +[8,04], {00654}, Lunar +[8,05], {00369}, Infinity +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00939}, Velocity +[8,10], {00261}, Echo +[8,11], {00294}, Zephyr diff --git a/83Containers.txt b/83Containers.txt new file mode 100644 index 0000000..2a85473 --- /dev/null +++ b/83Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00976}, Eclipse +[1,02], {00580}, Velocity +[1,03], {00134}, Blaze +[1,04], {00869}, Phoenix +[1,05], {00495}, Glider +[1,06], {00420}, Velocity +[1,07], {00795}, Horizon +[1,08], {00120}, Titan +[1,09], {00234}, Comet +[1,10], {00365}, Infinity +[1,11], {00253}, Twilight +[2,01], {00282}, Neptune +[2,02], {00720}, Glider +[2,03], {00869}, Radiance +[2,04], {00266}, Arcadia +[2,05], {00188}, Crystal +[2,06], {00722}, Velocity +[2,07], {00710}, Tesla +[2,08], {00525}, Echo +[2,09], {00756}, Titan +[2,10], {00524}, Horizon +[2,11], {00617}, Tectonic +[3,01], {00722}, Sol +[3,02], {00273}, Vertex +[3,03], {00644}, Titan +[3,04], {00808}, Shadow +[3,05], {00789}, Horizon +[3,06], {00187}, Nexus +[3,07], {00576}, Nexus +[3,08], {00763}, Everest +[3,09], {00728}, Solstice +[3,10], {00368}, Tesla +[3,11], {00397}, Apollo +[4,01], {00703}, Voyager +[4,02], {00690}, Inferno +[4,03], {00681}, Forge +[4,04], {00481}, Inferno +[4,05], {00710}, Echo +[4,06], {00643}, Voyager +[4,07], {00881}, Circuit +[4,08], {00195}, Vertex +[4,09], {00679}, Nimbus +[4,10], {00636}, Comet +[4,11], {00868}, Borealis +[5,01], {00739}, Zephyr +[5,02], {00777}, Solstice +[5,03], {00561}, Nova +[5,04], {00269}, Lunar +[5,05], {00612}, Everest +[5,06], {00324}, Prism +[5,07], {00100}, Polaris +[5,08], {00571}, Shard +[5,09], {00848}, Comet +[5,10], {00691}, Nimbus +[5,11], {00377}, Sol +[6,01], {00634}, Matrix +[6,02], {00000}, UNUSED +[6,03], {00338}, Voyager +[6,04], {00864}, Arcadia +[6,05], {00537}, Cascade +[6,06], {00459}, Aero +[6,07], {00439}, Odyssey +[6,08], {00771}, Titan +[6,09], {00152}, Borealis +[6,10], {00712}, Spectrum +[6,11], {00639}, Velocity +[7,01], {00638}, Nexus +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00882}, Velocity +[7,05], {00289}, Axis +[7,06], {00515}, Zephyr +[7,07], {00925}, Tesla +[7,08], {00719}, Glider +[7,09], {00212}, Eclipse +[7,10], {00926}, Eclipse +[7,11], {00164}, Forge +[8,01], {00391}, Infinity +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00617}, Infinity +[8,05], {00354}, Crystal +[8,06], {00630}, Sol +[8,07], {00232}, Mirage +[8,08], {00256}, Prism +[8,09], {00899}, Zephyr +[8,10], {00443}, Glacier +[8,11], {00710}, Nova diff --git a/84Containers.txt b/84Containers.txt new file mode 100644 index 0000000..3630f86 --- /dev/null +++ b/84Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00611}, Ember +[1,02], {00587}, Neptune +[1,03], {00227}, Tectonic +[1,04], {00557}, Vertex +[1,05], {00463}, Apollo +[1,06], {00131}, Echo +[1,07], {00701}, Aero +[1,08], {00541}, Cyclone +[1,09], {00214}, Zenith +[1,10], {00733}, Nova +[1,11], {00465}, Sol +[2,01], {00797}, Spectrum +[2,02], {00876}, Vertex +[2,03], {00642}, Atlas +[2,04], {00168}, Prism +[2,05], {00762}, Sol +[2,06], {00787}, Twilight +[2,07], {00277}, Zephyr +[2,08], {00875}, Vortex +[2,09], {00205}, Echo +[2,10], {00989}, Everest +[2,11], {00772}, Nova +[3,01], {00197}, Singularity +[3,02], {00472}, Cascade +[3,03], {00684}, Tesla +[3,04], {00294}, Horizon +[3,05], {00443}, Zenith +[3,06], {00622}, Zephyr +[3,07], {00525}, Echo +[3,08], {00200}, Zephyr +[3,09], {00636}, Aurora +[3,10], {00482}, Arcadia +[3,11], {00486}, Eclipse +[4,01], {00181}, Cyclone +[4,02], {00610}, Phoenix +[4,03], {00871}, Axis +[4,04], {00494}, Nimbus +[4,05], {00970}, Shadow +[4,06], {00898}, Meteor +[4,07], {00432}, Prism +[4,08], {00557}, Sol +[4,09], {00113}, Horizon +[4,10], {00181}, Cyclone +[4,11], {00151}, Phoenix +[5,01], {00431}, Halo +[5,02], {00816}, Halo +[5,03], {00185}, Zephyr +[5,04], {00151}, Comet +[5,05], {00760}, Eclipse +[5,06], {00133}, Velocity +[5,07], {00545}, Glacier +[5,08], {00267}, Eclipse +[5,09], {00985}, Tectonic +[5,10], {00126}, Blaze +[5,11], {00610}, Tectonic +[6,01], {00218}, Vertex +[6,02], {00760}, Circuit +[6,03], {00267}, Apollo +[6,04], {00865}, Tesla +[6,05], {00285}, Meteor +[6,06], {00165}, Glacier +[6,07], {00289}, Dynamo +[6,08], {00284}, Eclipse +[6,09], {00739}, Everest +[6,10], {00645}, Cascade +[6,11], {00114}, Prism +[7,01], {00733}, Singularity +[7,02], {00621}, Vortex +[7,03], {00817}, Lunar +[7,04], {00799}, Zenith +[7,05], {00000}, UNUSED +[7,06], {00640}, Quantum +[7,07], {00605}, Zenith +[7,08], {00412}, Gravity +[7,09], {00859}, Cyclone +[7,10], {00222}, Lunar +[7,11], {00982}, Nimbus +[8,01], {00000}, UNUSED +[8,02], {00560}, Titan +[8,03], {00214}, Echo +[8,04], {00305}, Velocity +[8,05], {00000}, UNUSED +[8,06], {00508}, Forge +[8,07], {00485}, Axis +[8,08], {00837}, Cosmos +[8,09], {00938}, Solstice +[8,10], {00636}, Solstice +[8,11], {00000}, UNUSED diff --git a/85Containers.txt b/85Containers.txt new file mode 100644 index 0000000..4f68c09 --- /dev/null +++ b/85Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00602}, Aurora +[1,02], {00721}, Infinity +[1,03], {00625}, Quantum +[1,04], {00287}, Glider +[1,05], {00480}, Vertex +[1,06], {00288}, Velocity +[1,07], {00356}, Crystal +[1,08], {00887}, Prism +[1,09], {00532}, Crystal +[1,10], {00909}, Mirage +[1,11], {00333}, Prism +[2,01], {00917}, Apollo +[2,02], {00294}, Zephyr +[2,03], {00228}, Dynamo +[2,04], {00571}, Neptune +[2,05], {00129}, Odyssey +[2,06], {00319}, Zenith +[2,07], {00592}, Spectrum +[2,08], {00617}, Meteor +[2,09], {00953}, Spectrum +[2,10], {00246}, Odyssey +[2,11], {00828}, Phoenix +[3,01], {00527}, Cosmos +[3,02], {00986}, Inferno +[3,03], {00889}, Nova +[3,04], {00723}, Shard +[3,05], {00405}, Borealis +[3,06], {00472}, Tectonic +[3,07], {00107}, Eclipse +[3,08], {00120}, Quantum +[3,09], {00673}, Arcadia +[3,10], {00677}, Cyclone +[3,11], {00977}, Prism +[4,01], {00434}, Circuit +[4,02], {00260}, Horizon +[4,03], {00681}, Orion +[4,04], {00601}, Cosmos +[4,05], {00426}, Horizon +[4,06], {00366}, Horizon +[4,07], {00323}, Drift +[4,08], {00893}, Infinity +[4,09], {00752}, Halo +[4,10], {00551}, Radiance +[4,11], {00409}, Echo +[5,01], {00625}, Horizon +[5,02], {01000}, Comet +[5,03], {00601}, Apollo +[5,04], {00290}, Stardust +[5,05], {00272}, Tectonic +[5,06], {00672}, Orion +[5,07], {00714}, Spectrum +[5,08], {00695}, Mirage +[5,09], {00440}, Phoenix +[5,10], {00591}, Gravity +[5,11], {00167}, Cascade +[6,01], {00716}, Crystal +[6,02], {00834}, Halo +[6,03], {00259}, Cosmos +[6,04], {00765}, Voyager +[6,05], {00833}, Orion +[6,06], {00640}, Twilight +[6,07], {00420}, Horizon +[6,08], {00581}, Matrix +[6,09], {00278}, Infinity +[6,10], {00759}, Meteor +[6,11], {00951}, Neptune +[7,01], {00279}, Beacon +[7,02], {00281}, Horizon +[7,03], {00581}, Solstice +[7,04], {00762}, Echo +[7,05], {00356}, Nexus +[7,06], {00206}, Titan +[7,07], {00925}, Vortex +[7,08], {00765}, Horizon +[7,09], {00998}, Circuit +[7,10], {00000}, UNUSED +[7,11], {00980}, Solstice +[8,01], {00452}, Arcadia +[8,02], {00299}, Zenith +[8,03], {00190}, Aero +[8,04], {00456}, Radiance +[8,05], {00631}, Eclipse +[8,06], {00254}, Aurora +[8,07], {00613}, Nova +[8,08], {00000}, UNUSED +[8,09], {00734}, Cyclone +[8,10], {00000}, UNUSED +[8,11], {00187}, Meteor diff --git a/86Containers.txt b/86Containers.txt new file mode 100644 index 0000000..72b8e3a --- /dev/null +++ b/86Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00212}, Apollo +[1,02], {00543}, Nova +[1,03], {00664}, Forge +[1,04], {00516}, Crystal +[1,05], {00796}, Crystal +[1,06], {00592}, Eclipse +[1,07], {00603}, Voyager +[1,08], {00113}, Everest +[1,09], {00991}, Zenith +[1,10], {00583}, Everest +[1,11], {00548}, Tesla +[2,01], {00756}, Cosmos +[2,02], {00700}, Odyssey +[2,03], {00851}, Meteor +[2,04], {00241}, Echo +[2,05], {00747}, Eclipse +[2,06], {00703}, Forge +[2,07], {00835}, Matrix +[2,08], {00925}, Cascade +[2,09], {00965}, Odyssey +[2,10], {00969}, Mirage +[2,11], {00565}, Horizon +[3,01], {00985}, Cascade +[3,02], {00109}, Inferno +[3,03], {00493}, Neptune +[3,04], {00252}, Cascade +[3,05], {00734}, Quantum +[3,06], {00949}, Polaris +[3,07], {00365}, Echo +[3,08], {00114}, Blaze +[3,09], {00819}, Matrix +[3,10], {00136}, Blaze +[3,11], {00578}, Horizon +[4,01], {00614}, Drift +[4,02], {00107}, Odyssey +[4,03], {00123}, Eclipse +[4,04], {00945}, Ember +[4,05], {00543}, Vortex +[4,06], {00953}, Spectrum +[4,07], {00461}, Dynamo +[4,08], {00461}, Mirage +[4,09], {00147}, Lunar +[4,10], {00945}, Halo +[4,11], {00382}, Voyager +[5,01], {00675}, Odyssey +[5,02], {00387}, Spectrum +[5,03], {00425}, Odyssey +[5,04], {00534}, Phoenix +[5,05], {00431}, Dynamo +[5,06], {00237}, Nexus +[5,07], {00716}, Radiance +[5,08], {00423}, Meteor +[5,09], {00617}, Cascade +[5,10], {00214}, Zephyr +[5,11], {00170}, Eclipse +[6,01], {00370}, Vertex +[6,02], {00148}, Radiance +[6,03], {00720}, Singularity +[6,04], {00768}, Matrix +[6,05], {00910}, Eclipse +[6,06], {00426}, Nova +[6,07], {00602}, Shadow +[6,08], {00197}, Phoenix +[6,09], {00316}, Circuit +[6,10], {00408}, Everest +[6,11], {00544}, Eclipse +[7,01], {00783}, Shard +[7,02], {00239}, Halo +[7,03], {00000}, UNUSED +[7,04], {00472}, Solstice +[7,05], {00795}, Echo +[7,06], {00946}, Echo +[7,07], {00460}, Meteor +[7,08], {00646}, Comet +[7,09], {00258}, Glacier +[7,10], {00184}, Cyclone +[7,11], {00913}, Forge +[8,01], {00490}, Eclipse +[8,02], {00910}, Echo +[8,03], {00000}, UNUSED +[8,04], {00744}, Axis +[8,05], {00712}, Lunar +[8,06], {00961}, Cosmos +[8,07], {00797}, Apollo +[8,08], {00963}, Spectrum +[8,09], {00855}, Neptune +[8,10], {00624}, Titan +[8,11], {00652}, Ember diff --git a/87Containers.txt b/87Containers.txt new file mode 100644 index 0000000..9f3cbf7 --- /dev/null +++ b/87Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00964}, Forge +[1,02], {00301}, Cyclone +[1,03], {00196}, Vortex +[1,04], {00415}, Atlas +[1,05], {00396}, Orion +[1,06], {00835}, Crystal +[1,07], {00511}, Nimbus +[1,08], {00740}, Horizon +[1,09], {00693}, Cyclone +[1,10], {00489}, Tesla +[1,11], {00405}, Spectrum +[2,01], {00354}, Polaris +[2,02], {00800}, Zenith +[2,03], {00888}, Phoenix +[2,04], {00588}, Cosmos +[2,05], {00146}, Nexus +[2,06], {00355}, Mirage +[2,07], {00345}, Zenith +[2,08], {00862}, Horizon +[2,09], {00953}, Odyssey +[2,10], {00403}, Forge +[2,11], {00330}, Nexus +[3,01], {00226}, Nova +[3,02], {00404}, Inferno +[3,03], {00822}, Axis +[3,04], {00400}, Beacon +[3,05], {00204}, Echo +[3,06], {00749}, Cyclone +[3,07], {00909}, Singularity +[3,08], {00204}, Echo +[3,09], {00915}, Eclipse +[3,10], {00393}, Tectonic +[3,11], {00930}, Odyssey +[4,01], {00430}, Polaris +[4,02], {00219}, Nova +[4,03], {00926}, Echo +[4,04], {00171}, Nimbus +[4,05], {00645}, Solstice +[4,06], {00646}, Comet +[4,07], {00906}, Sol +[4,08], {00203}, Voyager +[4,09], {00736}, Spectrum +[4,10], {00886}, Solstice +[4,11], {00797}, Atlas +[5,01], {00739}, Comet +[5,02], {00861}, Shadow +[5,03], {00308}, Orion +[5,04], {00752}, Eclipse +[5,05], {00213}, Polaris +[5,06], {00840}, Dynamo +[5,07], {00329}, Inferno +[5,08], {00346}, Titan +[5,09], {00584}, Forge +[5,10], {00266}, Radiance +[5,11], {00678}, Nimbus +[6,01], {00231}, Zenith +[6,02], {00872}, Singularity +[6,03], {00721}, Tectonic +[6,04], {00944}, Horizon +[6,05], {00647}, Tesla +[6,06], {00214}, Axis +[6,07], {00341}, Polaris +[6,08], {00699}, Polaris +[6,09], {00698}, Radiance +[6,10], {00536}, Atlas +[6,11], {00785}, Apollo +[7,01], {00721}, Inferno +[7,02], {00295}, Inferno +[7,03], {00585}, Axis +[7,04], {00546}, Solstice +[7,05], {00394}, Vortex +[7,06], {00890}, Nimbus +[7,07], {00107}, Titan +[7,08], {00319}, Zenith +[7,09], {00950}, Velocity +[7,10], {00895}, Meteor +[7,11], {00189}, Zephyr +[8,01], {00512}, Glacier +[8,02], {00196}, Cosmos +[8,03], {00828}, Velocity +[8,04], {00924}, Drift +[8,05], {00773}, Comet +[8,06], {00476}, Mirage +[8,07], {00297}, Radiance +[8,08], {00571}, Circuit +[8,09], {00690}, Phoenix +[8,10], {00753}, Arcadia +[8,11], {00000}, UNUSED diff --git a/88Containers.txt b/88Containers.txt new file mode 100644 index 0000000..caf147b --- /dev/null +++ b/88Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00884}, Vertex +[1,02], {00105}, Spectrum +[1,03], {00347}, Tesla +[1,04], {00190}, Blaze +[1,05], {00873}, Odyssey +[1,06], {00160}, Atlas +[1,07], {00554}, Singularity +[1,08], {00360}, Atlas +[1,09], {00516}, Ember +[1,10], {00134}, Cosmos +[1,11], {00272}, Ember +[2,01], {00153}, Nimbus +[2,02], {00867}, Velocity +[2,03], {00110}, Spectrum +[2,04], {00524}, Beacon +[2,05], {00236}, Zenith +[2,06], {00411}, Zephyr +[2,07], {00777}, Shard +[2,08], {00769}, Ember +[2,09], {00123}, Matrix +[2,10], {00289}, Stardust +[2,11], {00934}, Zenith +[3,01], {00607}, Phoenix +[3,02], {00906}, Singularity +[3,03], {00821}, Horizon +[3,04], {00583}, Twilight +[3,05], {00899}, Phoenix +[3,06], {00440}, Eclipse +[3,07], {00434}, Zephyr +[3,08], {00624}, Dynamo +[3,09], {00850}, Mirage +[3,10], {00320}, Twilight +[3,11], {00223}, Horizon +[4,01], {00196}, Stardust +[4,02], {00221}, Vertex +[4,03], {00446}, Echo +[4,04], {00237}, Vertex +[4,05], {00318}, Mirage +[4,06], {00910}, Circuit +[4,07], {00213}, Phoenix +[4,08], {00950}, Drift +[4,09], {00446}, Dynamo +[4,10], {00638}, Prism +[4,11], {00377}, Eclipse +[5,01], {00373}, Voyager +[5,02], {00187}, Solstice +[5,03], {00629}, Nimbus +[5,04], {00418}, Comet +[5,05], {00896}, Vertex +[5,06], {00375}, Odyssey +[5,07], {00437}, Dynamo +[5,08], {00521}, Forge +[5,09], {00310}, Cyclone +[5,10], {00124}, Atlas +[5,11], {00740}, Velocity +[6,01], {00604}, Mirage +[6,02], {00689}, Radiance +[6,03], {00480}, Vertex +[6,04], {00536}, Tesla +[6,05], {00135}, Zenith +[6,06], {00598}, Blaze +[6,07], {00832}, Circuit +[6,08], {00247}, Quantum +[6,09], {00344}, Twilight +[6,10], {00359}, Ember +[6,11], {00132}, Glider +[7,01], {00231}, Tectonic +[7,02], {00147}, Sol +[7,03], {00805}, Titan +[7,04], {00621}, Prism +[7,05], {00834}, Circuit +[7,06], {00848}, Cascade +[7,07], {00977}, Zenith +[7,08], {00655}, Echo +[7,09], {00730}, Circuit +[7,10], {00109}, Prism +[7,11], {00609}, Stardust +[8,01], {00648}, Ember +[8,02], {00476}, Horizon +[8,03], {00453}, Odyssey +[8,04], {00910}, Vertex +[8,05], {00460}, Vertex +[8,06], {00947}, Cosmos +[8,07], {00295}, Spectrum +[8,08], {00205}, Singularity +[8,09], {00846}, Orion +[8,10], {00565}, Cyclone +[8,11], {00529}, Meteor diff --git a/Backend/Classes/Grid.py b/Backend/Classes/Grid.py index 618ee7a..cbfd383 100644 --- a/Backend/Classes/Grid.py +++ b/Backend/Classes/Grid.py @@ -119,9 +119,9 @@ def move_container(self, pos1, pos2): from_slot = self.get_slot(pos1[0], pos1[1]) to_slot = self.get_slot(pos2[0], pos2[1]) container = from_slot.get_container() - if from_slot.get_position() == (7,11): # without this line the reconstruct_grids function will crash whenever there's a move from truck - self.load_container(pos2) - return + #if from_slot.get_position() == (7,11): # without this line the reconstruct_grids function will crash whenever there's a move from truck + # self.load_container(pos2) + # return name = container.get_name() weight = container.get_weight() @@ -401,7 +401,7 @@ def setup_transferlist(self, transfer_list): print(command) parts = command.strip().split(',') operation = parts[0] - print(operation) + #print(operation) if operation == 'load': name = parts[1] weight = int(parts[2]) diff --git a/Backend/Classes/Pathfinder.py b/Backend/Classes/Pathfinder.py index 9f6ba9f..b82bd47 100644 --- a/Backend/Classes/Pathfinder.py +++ b/Backend/Classes/Pathfinder.py @@ -45,7 +45,6 @@ def balanceHelper(self): crane_to_start_cost = state.calculate_path_cost(state.crane_position, move.from_slot) move_cost = state.calculate_path_cost(move.from_slot, move.to_slot) new_g_cost = g_cost + crane_to_start_cost + move_cost - #new_g_cost = g_cost + move.get_cost(child_state) h_cost = self.balance_heuristic(child_state) new_f_cost += new_g_cost + h_cost @@ -63,14 +62,19 @@ def balance_heuristic(self, state): #return abs(left_w - right_w) best_heuristic_value = float('inf') - for goal_combination in self.valid_combinations: + combinations_to_consider = self.valid_combinations[:4] + for goal_combination in combinations_to_consider: heuristic_value = self.calculate_distance_heuristic(state, goal_combination) best_heuristic_value = min(best_heuristic_value, heuristic_value) return best_heuristic_value def reconstruct_grids_from_path(self, current_grid, path): - + + if not path: + print("Path is empty. Cannot reconstruct grids.") + return 0 + moves_intermediate_grids = [] grid_copy = copy.deepcopy(current_grid) @@ -93,40 +97,27 @@ def reconstruct_grids_from_path(self, current_grid, path): return (moves_intermediate_grids) def calculate_distance_heuristic(self, state, goal_combination): - - side_a_weights, side_b_weights = set(goal_combination[0]), set(goal_combination[1]) + side_a_weights = set(goal_combination[0]) - distance_1 = 0 - distance_2 = 0 + total_distance = 0 + # Check containers on the left side for container in state.left_containers: if container.weight not in side_a_weights: row, col = container.get_position() - target_position, min_distance = state.get_nearest_slot_on_other_side(row, col , 'right') - if target_position: - distance_1 += min_distance - for container in state.right_containers: - if container.weight not in side_b_weights: - row, col = container.get_position() - target_position, min_distance = state.get_nearest_slot_on_other_side(row, col , 'left') + target_position, min_distance = state.get_nearest_slot_on_other_side(row, col, 'right') if target_position: - distance_1 += min_distance + total_distance += min_distance - for container in state.left_containers: - if container.weight not in side_b_weights: - row, col = container.get_position() - target_position, min_distance = state.get_nearest_slot_on_other_side(row, col , 'right') - if target_position: - distance_2 += min_distance + # Check containers on the right side to move to the left for container in state.right_containers: - if container.weight not in side_a_weights: + if container.weight in side_a_weights: row, col = container.get_position() - target_position, min_distance = state.get_nearest_slot_on_other_side(row, col , 'left') + target_position, min_distance = state.get_nearest_slot_on_other_side(row, col, 'left') if target_position: - distance_2 += min_distance - + total_distance += min_distance - return min(distance_1, distance_2) + return total_distance def can_balance(self, state): @@ -173,7 +164,7 @@ def can_balance(self, state): if pair not in used_combinations: self.valid_combinations.append((list(combination), list(side_b))) used_combinations.add(pair) - #print(f"Balanceable! Combinations: {self.valid_combinations}") + return can_balance else: @@ -315,7 +306,6 @@ def transfer(self): def transfer_helper(self): - i = 0 while self.open_set: f_cost, g_cost, path,_, state = heapq.heappop(self.open_set) diff --git a/Data/manifests/10Containers.txt b/Data/manifests/10Containers.txt new file mode 100644 index 0000000..ba9ac3e --- /dev/null +++ b/Data/manifests/10Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00671}, Beacon +[1,02], {00631}, Nimbus +[1,03], {00000}, UNUSED +[1,04], {00000}, UNUSED +[1,05], {00157}, Comet +[1,06], {00930}, Lunar +[1,07], {00312}, Eclipse +[1,08], {00129}, Matrix +[1,09], {00695}, Shadow +[1,10], {00651}, Circuit +[1,11], {00000}, UNUSED +[2,01], {00000}, UNUSED +[2,02], {00959}, Singularity +[2,03], {00000}, UNUSED +[2,04], {00000}, UNUSED +[2,05], {00000}, UNUSED +[2,06], {00000}, UNUSED +[2,07], {00000}, UNUSED +[2,08], {00000}, UNUSED +[2,09], {00000}, UNUSED +[2,10], {00000}, UNUSED +[2,11], {00000}, UNUSED +[3,01], {00000}, UNUSED +[3,02], {00228}, Gravity +[3,03], {00000}, UNUSED +[3,04], {00000}, UNUSED +[3,05], {00000}, UNUSED +[3,06], {00000}, UNUSED +[3,07], {00000}, UNUSED +[3,08], {00000}, UNUSED +[3,09], {00000}, UNUSED +[3,10], {00000}, UNUSED +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/20Containers.txt b/Data/manifests/20Containers.txt new file mode 100644 index 0000000..92e78dd --- /dev/null +++ b/Data/manifests/20Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00000}, UNUSED +[1,02], {00504}, Atlas +[1,03], {00392}, Shard +[1,04], {00000}, UNUSED +[1,05], {00407}, Halo +[1,06], {00466}, Vertex +[1,07], {00731}, Atlas +[1,08], {00277}, Orion +[1,09], {00391}, Meteor +[1,10], {00879}, Axis +[1,11], {00645}, Orion +[2,01], {00000}, UNUSED +[2,02], {00751}, Comet +[2,03], {00809}, Nimbus +[2,04], {00000}, UNUSED +[2,05], {00238}, Glider +[2,06], {00000}, UNUSED +[2,07], {00840}, Dynamo +[2,08], {00225}, Vertex +[2,09], {00000}, UNUSED +[2,10], {00751}, Nimbus +[2,11], {00827}, Twilight +[3,01], {00000}, UNUSED +[3,02], {00000}, UNUSED +[3,03], {00000}, UNUSED +[3,04], {00000}, UNUSED +[3,05], {00756}, Shard +[3,06], {00000}, UNUSED +[3,07], {00000}, UNUSED +[3,08], {00253}, Nimbus +[3,09], {00000}, UNUSED +[3,10], {00731}, Spectrum +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00804}, Halo +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/21Containers.txt b/Data/manifests/21Containers.txt new file mode 100644 index 0000000..8afc238 --- /dev/null +++ b/Data/manifests/21Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00968}, Eclipse +[1,02], {00399}, Horizon +[1,03], {00633}, Glacier +[1,04], {00601}, Gravity +[1,05], {00000}, UNUSED +[1,06], {00900}, Crystal +[1,07], {00619}, Zephyr +[1,08], {00213}, Gravity +[1,09], {00000}, UNUSED +[1,10], {00937}, Aero +[1,11], {00177}, Glacier +[2,01], {00975}, Infinity +[2,02], {00212}, Spectrum +[2,03], {00000}, UNUSED +[2,04], {00000}, UNUSED +[2,05], {00000}, UNUSED +[2,06], {00284}, Borealis +[2,07], {00159}, Lunar +[2,08], {00579}, Nimbus +[2,09], {00000}, UNUSED +[2,10], {00880}, Velocity +[2,11], {00215}, Stardust +[3,01], {00000}, UNUSED +[3,02], {00000}, UNUSED +[3,03], {00000}, UNUSED +[3,04], {00000}, UNUSED +[3,05], {00000}, UNUSED +[3,06], {00300}, Solstice +[3,07], {00000}, UNUSED +[3,08], {00630}, Crystal +[3,09], {00000}, UNUSED +[3,10], {00000}, UNUSED +[3,11], {00853}, Circuit +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00677}, Dynamo +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00430}, Eclipse +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/22Containers.txt b/Data/manifests/22Containers.txt new file mode 100644 index 0000000..f8055f8 --- /dev/null +++ b/Data/manifests/22Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00822}, Horizon +[1,02], {00000}, UNUSED +[1,03], {00127}, Eclipse +[1,04], {00994}, Shadow +[1,05], {00625}, Shadow +[1,06], {00363}, Nova +[1,07], {00258}, Zephyr +[1,08], {00800}, Axis +[1,09], {00000}, UNUSED +[1,10], {00688}, Neptune +[1,11], {00299}, Matrix +[2,01], {00822}, Spectrum +[2,02], {00000}, UNUSED +[2,03], {00000}, UNUSED +[2,04], {00631}, Solstice +[2,05], {00000}, UNUSED +[2,06], {00975}, Eclipse +[2,07], {00000}, UNUSED +[2,08], {00874}, Infinity +[2,09], {00000}, UNUSED +[2,10], {00483}, Halo +[2,11], {00394}, Aurora +[3,01], {00832}, Voyager +[3,02], {00000}, UNUSED +[3,03], {00000}, UNUSED +[3,04], {00218}, Meteor +[3,05], {00000}, UNUSED +[3,06], {00000}, UNUSED +[3,07], {00000}, UNUSED +[3,08], {00000}, UNUSED +[3,09], {00000}, UNUSED +[3,10], {00400}, Cosmos +[3,11], {00000}, UNUSED +[4,01], {00234}, Horizon +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00950}, Neptune +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00455}, Shadow +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00180}, Horizon +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/23Containers.txt b/Data/manifests/23Containers.txt new file mode 100644 index 0000000..837beec --- /dev/null +++ b/Data/manifests/23Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00282}, Twilight +[1,02], {00283}, Lunar +[1,03], {00364}, Gravity +[1,04], {00000}, UNUSED +[1,05], {00183}, Shadow +[1,06], {00949}, Horizon +[1,07], {00773}, Eclipse +[1,08], {00226}, Neptune +[1,09], {00296}, Velocity +[1,10], {00000}, UNUSED +[1,11], {00980}, Tectonic +[2,01], {00858}, Orion +[2,02], {00889}, Dynamo +[2,03], {00360}, Horizon +[2,04], {00000}, UNUSED +[2,05], {00615}, Ember +[2,06], {00000}, UNUSED +[2,07], {00580}, Velocity +[2,08], {00113}, Borealis +[2,09], {00665}, Shard +[2,10], {00000}, UNUSED +[2,11], {00269}, Odyssey +[3,01], {00000}, UNUSED +[3,02], {00000}, UNUSED +[3,03], {00000}, UNUSED +[3,04], {00000}, UNUSED +[3,05], {00000}, UNUSED +[3,06], {00000}, UNUSED +[3,07], {00410}, Twilight +[3,08], {00000}, UNUSED +[3,09], {00791}, Echo +[3,10], {00000}, UNUSED +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00726}, Echo +[4,08], {00000}, UNUSED +[4,09], {00247}, Cyclone +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00678}, Dynamo +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00639}, Odyssey +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/24Containers.txt b/Data/manifests/24Containers.txt new file mode 100644 index 0000000..2310e7d --- /dev/null +++ b/Data/manifests/24Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00888}, Zenith +[1,02], {00132}, Lunar +[1,03], {00795}, Circuit +[1,04], {00655}, Stardust +[1,05], {00114}, Vertex +[1,06], {00422}, Inferno +[1,07], {00521}, Drift +[1,08], {00210}, Arcadia +[1,09], {00416}, Velocity +[1,10], {00785}, Quantum +[1,11], {00326}, Eclipse +[2,01], {00000}, UNUSED +[2,02], {00000}, UNUSED +[2,03], {00187}, Quantum +[2,04], {00711}, Orion +[2,05], {00501}, Sol +[2,06], {00476}, Blaze +[2,07], {00107}, Singularity +[2,08], {00728}, Zephyr +[2,09], {00000}, UNUSED +[2,10], {00143}, Matrix +[2,11], {00417}, Cyclone +[3,01], {00000}, UNUSED +[3,02], {00000}, UNUSED +[3,03], {00738}, Arcadia +[3,04], {00000}, UNUSED +[3,05], {00355}, Shadow +[3,06], {00000}, UNUSED +[3,07], {00319}, Aurora +[3,08], {00000}, UNUSED +[3,09], {00000}, UNUSED +[3,10], {00371}, Radiance +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00199}, Nexus +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/26Containers.txt b/Data/manifests/26Containers.txt new file mode 100644 index 0000000..a83197b --- /dev/null +++ b/Data/manifests/26Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00371}, Aero +[1,02], {00955}, Spectrum +[1,03], {00894}, Circuit +[1,04], {00495}, Everest +[1,05], {00439}, Echo +[1,06], {00385}, Meteor +[1,07], {00103}, Glider +[1,08], {00568}, Beacon +[1,09], {00333}, Axis +[1,10], {00875}, Matrix +[1,11], {00481}, Ember +[2,01], {00000}, UNUSED +[2,02], {00320}, Cascade +[2,03], {00117}, Velocity +[2,04], {00985}, Vertex +[2,05], {00000}, UNUSED +[2,06], {00000}, UNUSED +[2,07], {00000}, UNUSED +[2,08], {00329}, Nimbus +[2,09], {00186}, Tesla +[2,10], {00820}, Glacier +[2,11], {00225}, Axis +[3,01], {00000}, UNUSED +[3,02], {00000}, UNUSED +[3,03], {00000}, UNUSED +[3,04], {00170}, Comet +[3,05], {00000}, UNUSED +[3,06], {00000}, UNUSED +[3,07], {00000}, UNUSED +[3,08], {00780}, Glider +[3,09], {00239}, Tesla +[3,10], {00654}, Ember +[3,11], {00695}, Titan +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00000}, UNUSED +[4,08], {00425}, Nexus +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00332}, Velocity +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00768}, Nexus +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/27Containers.txt b/Data/manifests/27Containers.txt new file mode 100644 index 0000000..014f857 --- /dev/null +++ b/Data/manifests/27Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00127}, Zenith +[1,02], {00961}, Everest +[1,03], {00618}, Sol +[1,04], {00395}, Cosmos +[1,05], {00576}, Stardust +[1,06], {00401}, Zephyr +[1,07], {00532}, Beacon +[1,08], {00000}, UNUSED +[1,09], {00734}, Apollo +[1,10], {00220}, Solstice +[1,11], {00238}, Vertex +[2,01], {00655}, Tesla +[2,02], {00538}, Dynamo +[2,03], {00000}, UNUSED +[2,04], {00539}, Velocity +[2,05], {00931}, Inferno +[2,06], {00905}, Velocity +[2,07], {00717}, Ember +[2,08], {00000}, UNUSED +[2,09], {00848}, Apollo +[2,10], {00486}, Tesla +[2,11], {00186}, Stardust +[3,01], {00000}, UNUSED +[3,02], {00000}, UNUSED +[3,03], {00000}, UNUSED +[3,04], {00878}, Voyager +[3,05], {00612}, Beacon +[3,06], {00457}, Matrix +[3,07], {00783}, Tectonic +[3,08], {00000}, UNUSED +[3,09], {00000}, UNUSED +[3,10], {00158}, Glider +[3,11], {00387}, Crystal +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00900}, Mirage +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00942}, Nimbus +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/28Containers.txt b/Data/manifests/28Containers.txt new file mode 100644 index 0000000..c411f9b --- /dev/null +++ b/Data/manifests/28Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00744}, Echo +[1,02], {00716}, Zenith +[1,03], {00331}, Tectonic +[1,04], {00250}, Orion +[1,05], {00321}, Orion +[1,06], {00287}, Twilight +[1,07], {00498}, Spectrum +[1,08], {00415}, Zenith +[1,09], {00325}, Inferno +[1,10], {00866}, Shadow +[1,11], {00920}, Vortex +[2,01], {00276}, Cosmos +[2,02], {00283}, Gravity +[2,03], {00280}, Lunar +[2,04], {00000}, UNUSED +[2,05], {00944}, Atlas +[2,06], {00753}, Zenith +[2,07], {00901}, Zenith +[2,08], {00000}, UNUSED +[2,09], {00000}, UNUSED +[2,10], {00131}, Shadow +[2,11], {00779}, Comet +[3,01], {00567}, Vertex +[3,02], {00000}, UNUSED +[3,03], {00467}, Vortex +[3,04], {00000}, UNUSED +[3,05], {00971}, Inferno +[3,06], {00902}, Axis +[3,07], {00956}, Radiance +[3,08], {00000}, UNUSED +[3,09], {00000}, UNUSED +[3,10], {00000}, UNUSED +[3,11], {00680}, Vertex +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00416}, Voyager +[4,04], {00000}, UNUSED +[4,05], {00836}, Cosmos +[4,06], {00000}, UNUSED +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00402}, Halo +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/29Containers.txt b/Data/manifests/29Containers.txt new file mode 100644 index 0000000..3ebe66c --- /dev/null +++ b/Data/manifests/29Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00821}, Orion +[1,02], {00519}, Velocity +[1,03], {00403}, Zenith +[1,04], {00564}, Titan +[1,05], {00870}, Horizon +[1,06], {00625}, Zenith +[1,07], {00660}, Cascade +[1,08], {00677}, Zenith +[1,09], {00132}, Vortex +[1,10], {00660}, Forge +[1,11], {00508}, Zenith +[2,01], {00111}, Horizon +[2,02], {00000}, UNUSED +[2,03], {00139}, Nimbus +[2,04], {00264}, Infinity +[2,05], {00000}, UNUSED +[2,06], {00000}, UNUSED +[2,07], {00575}, Odyssey +[2,08], {00688}, Cosmos +[2,09], {00899}, Aurora +[2,10], {00372}, Arcadia +[2,11], {00719}, Zenith +[3,01], {00651}, Cascade +[3,02], {00000}, UNUSED +[3,03], {00000}, UNUSED +[3,04], {00000}, UNUSED +[3,05], {00000}, UNUSED +[3,06], {00000}, UNUSED +[3,07], {00000}, UNUSED +[3,08], {00000}, UNUSED +[3,09], {00507}, Circuit +[3,10], {00219}, Cosmos +[3,11], {01000}, Lunar +[4,01], {00967}, Neptune +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00649}, Sol +[4,10], {00209}, Zephyr +[4,11], {00143}, Velocity +[5,01], {00272}, Eclipse +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00196}, Mirage +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/30Containers.txt b/Data/manifests/30Containers.txt new file mode 100644 index 0000000..4f4c623 --- /dev/null +++ b/Data/manifests/30Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00550}, Halo +[1,02], {00173}, Radiance +[1,03], {00361}, Nexus +[1,04], {00942}, Meteor +[1,05], {00244}, Zenith +[1,06], {00375}, Quantum +[1,07], {00678}, Matrix +[1,08], {00218}, Horizon +[1,09], {00651}, Nova +[1,10], {00268}, Vertex +[1,11], {00567}, Vertex +[2,01], {00310}, Comet +[2,02], {00953}, Echo +[2,03], {00417}, Blaze +[2,04], {00860}, Lunar +[2,05], {00000}, UNUSED +[2,06], {00971}, Zenith +[2,07], {00975}, Infinity +[2,08], {00951}, Twilight +[2,09], {00000}, UNUSED +[2,10], {00944}, Spectrum +[2,11], {00000}, UNUSED +[3,01], {00000}, UNUSED +[3,02], {00171}, Cyclone +[3,03], {00000}, UNUSED +[3,04], {00000}, UNUSED +[3,05], {00000}, UNUSED +[3,06], {00127}, Echo +[3,07], {00880}, Stardust +[3,08], {00000}, UNUSED +[3,09], {00000}, UNUSED +[3,10], {00103}, Vertex +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00648}, Radiance +[4,07], {00392}, Solstice +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00177}, Halo +[5,07], {00461}, Velocity +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00966}, Borealis +[6,07], {00350}, Comet +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00407}, Borealis +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/31Containers.txt b/Data/manifests/31Containers.txt new file mode 100644 index 0000000..3cdc7f3 --- /dev/null +++ b/Data/manifests/31Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00942}, Vertex +[1,02], {00871}, Inferno +[1,03], {00202}, Nimbus +[1,04], {00869}, Voyager +[1,05], {00805}, Vertex +[1,06], {00661}, Apollo +[1,07], {00466}, Nexus +[1,08], {00466}, Spectrum +[1,09], {00206}, Orion +[1,10], {00964}, Glacier +[1,11], {00000}, UNUSED +[2,01], {00368}, Quantum +[2,02], {00946}, Singularity +[2,03], {00602}, Zenith +[2,04], {00462}, Odyssey +[2,05], {00388}, Stardust +[2,06], {00207}, Nova +[2,07], {00239}, Forge +[2,08], {00154}, Polaris +[2,09], {00000}, UNUSED +[2,10], {00409}, Aero +[2,11], {00000}, UNUSED +[3,01], {00000}, UNUSED +[3,02], {00476}, Zenith +[3,03], {00000}, UNUSED +[3,04], {00444}, Halo +[3,05], {00228}, Phoenix +[3,06], {00320}, Horizon +[3,07], {00643}, Sol +[3,08], {00000}, UNUSED +[3,09], {00000}, UNUSED +[3,10], {00000}, UNUSED +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00901}, Solstice +[4,03], {00000}, UNUSED +[4,04], {00203}, Comet +[4,05], {00823}, Dynamo +[4,06], {00000}, UNUSED +[4,07], {00113}, Cascade +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00132}, Arcadia +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00868}, Vertex +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00295}, Matrix +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/32Containers.txt b/Data/manifests/32Containers.txt new file mode 100644 index 0000000..ed533f5 --- /dev/null +++ b/Data/manifests/32Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00640}, Eclipse +[1,02], {00836}, Singularity +[1,03], {00793}, Vortex +[1,04], {00536}, Meteor +[1,05], {00259}, Matrix +[1,06], {00969}, Shard +[1,07], {00725}, Nexus +[1,08], {00339}, Crystal +[1,09], {00269}, Zenith +[1,10], {00451}, Crystal +[1,11], {00763}, Cyclone +[2,01], {00354}, Cascade +[2,02], {00586}, Arcadia +[2,03], {00496}, Cosmos +[2,04], {00640}, Quantum +[2,05], {00739}, Axis +[2,06], {00912}, Glider +[2,07], {00000}, UNUSED +[2,08], {00690}, Aero +[2,09], {00148}, Eclipse +[2,10], {00870}, Zephyr +[2,11], {00724}, Beacon +[3,01], {00000}, UNUSED +[3,02], {00230}, Titan +[3,03], {00646}, Horizon +[3,04], {00884}, Horizon +[3,05], {00000}, UNUSED +[3,06], {00251}, Axis +[3,07], {00000}, UNUSED +[3,08], {00770}, Cyclone +[3,09], {00000}, UNUSED +[3,10], {00000}, UNUSED +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00490}, Radiance +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00231}, Inferno +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00679}, Beacon +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00122}, Circuit +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00778}, Velocity +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00104}, Phoenix +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/33Containers.txt b/Data/manifests/33Containers.txt new file mode 100644 index 0000000..64db68b --- /dev/null +++ b/Data/manifests/33Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00369}, Aero +[1,02], {00115}, Spectrum +[1,03], {00415}, Echo +[1,04], {00270}, Zenith +[1,05], {00125}, Mirage +[1,06], {00819}, Vortex +[1,07], {00973}, Singularity +[1,08], {00814}, Vortex +[1,09], {00736}, Halo +[1,10], {00902}, Circuit +[1,11], {00544}, Velocity +[2,01], {00325}, Velocity +[2,02], {00500}, Nova +[2,03], {00438}, Orion +[2,04], {00000}, UNUSED +[2,05], {00000}, UNUSED +[2,06], {00656}, Vortex +[2,07], {00609}, Beacon +[2,08], {00548}, Comet +[2,09], {00214}, Meteor +[2,10], {00713}, Singularity +[2,11], {00889}, Glider +[3,01], {00000}, UNUSED +[3,02], {00000}, UNUSED +[3,03], {00594}, Stardust +[3,04], {00000}, UNUSED +[3,05], {00000}, UNUSED +[3,06], {00537}, Halo +[3,07], {00886}, Zephyr +[3,08], {00244}, Zenith +[3,09], {00744}, Inferno +[3,10], {00000}, UNUSED +[3,11], {00278}, Phoenix +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00844}, Spectrum +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00509}, Phoenix +[4,08], {00101}, Ember +[4,09], {00704}, Radiance +[4,10], {00000}, UNUSED +[4,11], {00636}, Glider +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00492}, Solstice +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00804}, Nexus +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/34Containers.txt b/Data/manifests/34Containers.txt new file mode 100644 index 0000000..073b369 --- /dev/null +++ b/Data/manifests/34Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00647}, Shard +[1,02], {00766}, Vertex +[1,03], {00281}, Solstice +[1,04], {00626}, Twilight +[1,05], {00260}, Solstice +[1,06], {00293}, Titan +[1,07], {00756}, Tesla +[1,08], {00686}, Crystal +[1,09], {00635}, Orion +[1,10], {00622}, Aurora +[1,11], {00655}, Titan +[2,01], {00420}, Forge +[2,02], {00321}, Gravity +[2,03], {00000}, UNUSED +[2,04], {00299}, Meteor +[2,05], {00292}, Horizon +[2,06], {00563}, Everest +[2,07], {00864}, Sol +[2,08], {00574}, Lunar +[2,09], {00548}, Solstice +[2,10], {00944}, Velocity +[2,11], {00247}, Odyssey +[3,01], {00701}, Matrix +[3,02], {00000}, UNUSED +[3,03], {00000}, UNUSED +[3,04], {00651}, Singularity +[3,05], {00729}, Atlas +[3,06], {00600}, Orion +[3,07], {00267}, Aurora +[3,08], {00988}, Voyager +[3,09], {00902}, Orion +[3,10], {00271}, Horizon +[3,11], {00123}, Vertex +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00182}, Cosmos +[4,06], {00549}, Shadow +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00102}, Blaze +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00390}, Polaris +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/35Containers.txt b/Data/manifests/35Containers.txt new file mode 100644 index 0000000..73b0066 --- /dev/null +++ b/Data/manifests/35Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00846}, Lunar +[1,02], {00373}, Spectrum +[1,03], {00404}, Zenith +[1,04], {00370}, Cosmos +[1,05], {00385}, Apollo +[1,06], {00794}, Horizon +[1,07], {00712}, Mirage +[1,08], {00564}, Comet +[1,09], {00980}, Zenith +[1,10], {00894}, Tectonic +[1,11], {00641}, Drift +[2,01], {00214}, Glider +[2,02], {00636}, Quantum +[2,03], {00157}, Forge +[2,04], {00636}, Singularity +[2,05], {00111}, Vortex +[2,06], {00487}, Circuit +[2,07], {00597}, Zephyr +[2,08], {00000}, UNUSED +[2,09], {00607}, Crystal +[2,10], {00249}, Arcadia +[2,11], {00391}, Dynamo +[3,01], {00937}, Tesla +[3,02], {00516}, Voyager +[3,03], {00792}, Shadow +[3,04], {00926}, Twilight +[3,05], {00680}, Singularity +[3,06], {00424}, Vertex +[3,07], {00000}, UNUSED +[3,08], {00000}, UNUSED +[3,09], {00000}, UNUSED +[3,10], {00133}, Apollo +[3,11], {00607}, Drift +[4,01], {00000}, UNUSED +[4,02], {00422}, Glider +[4,03], {00657}, Vertex +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00670}, Cyclone +[5,01], {00000}, UNUSED +[5,02], {00639}, Spectrum +[5,03], {00343}, Zenith +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00364}, Spectrum +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/36Containers.txt b/Data/manifests/36Containers.txt new file mode 100644 index 0000000..5edaa4c --- /dev/null +++ b/Data/manifests/36Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00768}, Axis +[1,02], {00401}, Echo +[1,03], {00674}, Horizon +[1,04], {00803}, Vertex +[1,05], {00143}, Tectonic +[1,06], {00000}, UNUSED +[1,07], {00730}, Comet +[1,08], {00910}, Shard +[1,09], {00248}, Singularity +[1,10], {00341}, Inferno +[1,11], {00421}, Halo +[2,01], {00000}, UNUSED +[2,02], {00000}, UNUSED +[2,03], {00718}, Halo +[2,04], {00752}, Mirage +[2,05], {00000}, UNUSED +[2,06], {00000}, UNUSED +[2,07], {00554}, Cyclone +[2,08], {00769}, Horizon +[2,09], {00145}, Vertex +[2,10], {00108}, Voyager +[2,11], {00488}, Comet +[3,01], {00000}, UNUSED +[3,02], {00000}, UNUSED +[3,03], {00774}, Titan +[3,04], {00369}, Shard +[3,05], {00000}, UNUSED +[3,06], {00000}, UNUSED +[3,07], {00140}, Matrix +[3,08], {00537}, Infinity +[3,09], {00807}, Zenith +[3,10], {00840}, Neptune +[3,11], {00439}, Cascade +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00190}, Atlas +[4,04], {00802}, Cosmos +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00000}, UNUSED +[4,08], {00627}, Voyager +[4,09], {00971}, Zephyr +[4,10], {00000}, UNUSED +[4,11], {00491}, Forge +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00187}, Neptune +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00162}, Spectrum +[5,10], {00000}, UNUSED +[5,11], {00232}, Twilight +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00451}, Cascade +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00375}, Horizon +[6,10], {00000}, UNUSED +[6,11], {00867}, Phoenix +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00852}, Titan +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/37Containers.txt b/Data/manifests/37Containers.txt new file mode 100644 index 0000000..c3cf836 --- /dev/null +++ b/Data/manifests/37Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00806}, Singularity +[1,02], {00250}, Nimbus +[1,03], {00640}, Eclipse +[1,04], {00887}, Vertex +[1,05], {00405}, Apollo +[1,06], {00263}, Zephyr +[1,07], {00256}, Echo +[1,08], {00820}, Stardust +[1,09], {00835}, Crystal +[1,10], {00989}, Zephyr +[1,11], {00864}, Horizon +[2,01], {00501}, Polaris +[2,02], {00650}, Stardust +[2,03], {00195}, Tesla +[2,04], {00673}, Glacier +[2,05], {00000}, UNUSED +[2,06], {00435}, Odyssey +[2,07], {00779}, Echo +[2,08], {00749}, Zenith +[2,09], {00857}, Zenith +[2,10], {00590}, Eclipse +[2,11], {00510}, Orion +[3,01], {00000}, UNUSED +[3,02], {00270}, Ember +[3,03], {00366}, Nexus +[3,04], {00708}, Twilight +[3,05], {00000}, UNUSED +[3,06], {00000}, UNUSED +[3,07], {00542}, Zephyr +[3,08], {00000}, UNUSED +[3,09], {00222}, Crystal +[3,10], {00802}, Zenith +[3,11], {00750}, Zenith +[4,01], {00000}, UNUSED +[4,02], {00189}, Vortex +[4,03], {00381}, Horizon +[4,04], {00696}, Glacier +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00219}, Blaze +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00248}, Blaze +[4,11], {00718}, Meteor +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00899}, Meteor +[5,04], {00603}, Mirage +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00858}, Echo +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/38Containers.txt b/Data/manifests/38Containers.txt new file mode 100644 index 0000000..097ea3d --- /dev/null +++ b/Data/manifests/38Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00947}, Polaris +[1,02], {00689}, Aero +[1,03], {00804}, Glacier +[1,04], {00459}, Crystal +[1,05], {00966}, Glider +[1,06], {00741}, Voyager +[1,07], {00357}, Zenith +[1,08], {00401}, Dynamo +[1,09], {00829}, Glider +[1,10], {00566}, Everest +[1,11], {00243}, Orion +[2,01], {00244}, Spectrum +[2,02], {00136}, Vertex +[2,03], {00551}, Everest +[2,04], {00183}, Zenith +[2,05], {00340}, Forge +[2,06], {00752}, Velocity +[2,07], {00152}, Nova +[2,08], {00343}, Velocity +[2,09], {00298}, Aero +[2,10], {00848}, Zenith +[2,11], {00799}, Shadow +[3,01], {00000}, UNUSED +[3,02], {00690}, Everest +[3,03], {00568}, Vertex +[3,04], {00506}, Spectrum +[3,05], {00946}, Circuit +[3,06], {00000}, UNUSED +[3,07], {00400}, Comet +[3,08], {00000}, UNUSED +[3,09], {00534}, Nimbus +[3,10], {00550}, Mirage +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00187}, Meteor +[4,03], {00628}, Sol +[4,04], {00973}, Arcadia +[4,05], {00641}, Horizon +[4,06], {00000}, UNUSED +[4,07], {00217}, Shadow +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00827}, Nexus +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00318}, Mirage +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00506}, Dynamo +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00924}, Horizon +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/39Containers.txt b/Data/manifests/39Containers.txt new file mode 100644 index 0000000..edb2595 --- /dev/null +++ b/Data/manifests/39Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00107}, Vortex +[1,02], {00595}, Nova +[1,03], {00272}, Eclipse +[1,04], {00876}, Meteor +[1,05], {00540}, Horizon +[1,06], {00305}, Comet +[1,07], {00667}, Radiance +[1,08], {00239}, Forge +[1,09], {00307}, Gravity +[1,10], {00604}, Cyclone +[1,11], {00302}, Horizon +[2,01], {00828}, Solstice +[2,02], {00000}, UNUSED +[2,03], {00000}, UNUSED +[2,04], {00369}, Glacier +[2,05], {00535}, Aero +[2,06], {00370}, Cyclone +[2,07], {00552}, Lunar +[2,08], {00125}, Nimbus +[2,09], {00238}, Meteor +[2,10], {00931}, Velocity +[2,11], {00596}, Solstice +[3,01], {00662}, Zenith +[3,02], {00000}, UNUSED +[3,03], {00000}, UNUSED +[3,04], {00000}, UNUSED +[3,05], {00447}, Meteor +[3,06], {00859}, Matrix +[3,07], {00730}, Prism +[3,08], {00179}, Quantum +[3,09], {00246}, Blaze +[3,10], {00000}, UNUSED +[3,11], {00196}, Vertex +[4,01], {00920}, Blaze +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00422}, Cyclone +[4,07], {00336}, Vertex +[4,08], {00494}, Vortex +[4,09], {00780}, Lunar +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00991}, Ember +[5,07], {00775}, Solstice +[5,08], {00936}, Cyclone +[5,09], {00515}, Orion +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00783}, Zephyr +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00893}, Atlas +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00489}, Aero +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/40Containers.txt b/Data/manifests/40Containers.txt new file mode 100644 index 0000000..355235c --- /dev/null +++ b/Data/manifests/40Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00228}, Vortex +[1,02], {00657}, Stardust +[1,03], {00296}, Cosmos +[1,04], {00968}, Velocity +[1,05], {00440}, Dynamo +[1,06], {00325}, Shard +[1,07], {00115}, Forge +[1,08], {00964}, Nimbus +[1,09], {00103}, Cosmos +[1,10], {00951}, Infinity +[1,11], {00371}, Dynamo +[2,01], {00705}, Inferno +[2,02], {00848}, Stardust +[2,03], {00512}, Eclipse +[2,04], {00202}, Crystal +[2,05], {00259}, Beacon +[2,06], {00800}, Aero +[2,07], {00125}, Glacier +[2,08], {00228}, Spectrum +[2,09], {00795}, Shadow +[2,10], {00768}, Crystal +[2,11], {00240}, Circuit +[3,01], {00399}, Atlas +[3,02], {00584}, Horizon +[3,03], {00208}, Solstice +[3,04], {00504}, Inferno +[3,05], {00000}, UNUSED +[3,06], {00795}, Tectonic +[3,07], {00000}, UNUSED +[3,08], {00597}, Zenith +[3,09], {00121}, Horizon +[3,10], {00135}, Shadow +[3,11], {00900}, Tectonic +[4,01], {00778}, Dynamo +[4,02], {00382}, Stardust +[4,03], {00000}, UNUSED +[4,04], {00000}, UNUSED +[4,05], {00000}, UNUSED +[4,06], {00981}, Spectrum +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00615}, Twilight +[5,01], {00000}, UNUSED +[5,02], {00461}, Blaze +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00189}, Cyclone +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00584}, Zenith +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00782}, Gravity +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00867}, Vertex +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/41Containers.txt b/Data/manifests/41Containers.txt new file mode 100644 index 0000000..6950f65 --- /dev/null +++ b/Data/manifests/41Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00653}, Titan +[1,02], {00689}, Titan +[1,03], {00117}, Spectrum +[1,04], {00592}, Radiance +[1,05], {00923}, Polaris +[1,06], {00138}, Vertex +[1,07], {00951}, Cyclone +[1,08], {00127}, Ember +[1,09], {00442}, Zenith +[1,10], {00748}, Drift +[1,11], {00979}, Crystal +[2,01], {00762}, Velocity +[2,02], {00563}, Spectrum +[2,03], {00851}, Matrix +[2,04], {00583}, Zenith +[2,05], {00246}, Zenith +[2,06], {00728}, Zephyr +[2,07], {00661}, Tectonic +[2,08], {00000}, UNUSED +[2,09], {00515}, Glider +[2,10], {00157}, Meteor +[2,11], {00315}, Eclipse +[3,01], {00196}, Eclipse +[3,02], {00000}, UNUSED +[3,03], {00670}, Circuit +[3,04], {00780}, Meteor +[3,05], {00979}, Solstice +[3,06], {00260}, Velocity +[3,07], {00298}, Shard +[3,08], {00000}, UNUSED +[3,09], {00801}, Circuit +[3,10], {00625}, Tesla +[3,11], {00779}, Arcadia +[4,01], {00368}, Solstice +[4,02], {00000}, UNUSED +[4,03], {00675}, Dynamo +[4,04], {00309}, Solstice +[4,05], {00820}, Spectrum +[4,06], {00732}, Aurora +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00794}, Zenith +[4,11], {00896}, Nexus +[5,01], {00589}, Circuit +[5,02], {00000}, UNUSED +[5,03], {00789}, Nova +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00678}, Sol +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00278}, Polaris +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/42Containers.txt b/Data/manifests/42Containers.txt new file mode 100644 index 0000000..b20e2f1 --- /dev/null +++ b/Data/manifests/42Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00289}, Inferno +[1,02], {00169}, Tesla +[1,03], {00938}, Sol +[1,04], {00470}, Tectonic +[1,05], {00230}, Mirage +[1,06], {00559}, Stardust +[1,07], {00485}, Cascade +[1,08], {00302}, Gravity +[1,09], {00660}, Cascade +[1,10], {00193}, Shard +[1,11], {00276}, Everest +[2,01], {00863}, Forge +[2,02], {00898}, Eclipse +[2,03], {00176}, Neptune +[2,04], {00288}, Aurora +[2,05], {00377}, Circuit +[2,06], {00665}, Aero +[2,07], {00822}, Velocity +[2,08], {00000}, UNUSED +[2,09], {00136}, Meteor +[2,10], {00468}, Shard +[2,11], {00816}, Tectonic +[3,01], {00133}, Vortex +[3,02], {00000}, UNUSED +[3,03], {00925}, Zenith +[3,04], {00580}, Forge +[3,05], {00106}, Dynamo +[3,06], {00650}, Vertex +[3,07], {00738}, Vortex +[3,08], {00000}, UNUSED +[3,09], {00433}, Twilight +[3,10], {00836}, Horizon +[3,11], {00134}, Sol +[4,01], {00445}, Spectrum +[4,02], {00000}, UNUSED +[4,03], {00712}, Zenith +[4,04], {00695}, Sol +[4,05], {00427}, Glacier +[4,06], {00294}, Nexus +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00978}, Axis +[4,11], {00549}, Aero +[5,01], {00970}, Zenith +[5,02], {00000}, UNUSED +[5,03], {00436}, Circuit +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00420}, Dynamo +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00271}, Matrix +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00706}, Comet +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/43Containers.txt b/Data/manifests/43Containers.txt new file mode 100644 index 0000000..918d58e --- /dev/null +++ b/Data/manifests/43Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00875}, Crystal +[1,02], {00337}, Horizon +[1,03], {00729}, Nimbus +[1,04], {00435}, Blaze +[1,05], {00190}, Halo +[1,06], {00379}, Cosmos +[1,07], {00183}, Cosmos +[1,08], {00275}, Everest +[1,09], {00469}, Voyager +[1,10], {00208}, Spectrum +[1,11], {00557}, Horizon +[2,01], {00226}, Drift +[2,02], {00748}, Apollo +[2,03], {00489}, Tesla +[2,04], {00593}, Twilight +[2,05], {00000}, UNUSED +[2,06], {00395}, Twilight +[2,07], {00566}, Voyager +[2,08], {00469}, Apollo +[2,09], {00381}, Everest +[2,10], {00392}, Forge +[2,11], {00322}, Velocity +[3,01], {00664}, Mirage +[3,02], {00998}, Dynamo +[3,03], {00276}, Prism +[3,04], {00116}, Nexus +[3,05], {00000}, UNUSED +[3,06], {00798}, Gravity +[3,07], {00571}, Drift +[3,08], {00244}, Voyager +[3,09], {00000}, UNUSED +[3,10], {00815}, Matrix +[3,11], {00000}, UNUSED +[4,01], {00286}, Spectrum +[4,02], {00429}, Titan +[4,03], {00361}, Vortex +[4,04], {00794}, Twilight +[4,05], {00000}, UNUSED +[4,06], {00514}, Neptune +[4,07], {00000}, UNUSED +[4,08], {00851}, Nova +[4,09], {00000}, UNUSED +[4,10], {00756}, Quantum +[4,11], {00000}, UNUSED +[5,01], {00482}, Everest +[5,02], {00291}, Everest +[5,03], {00795}, Orion +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00246}, Vortex +[5,07], {00000}, UNUSED +[5,08], {00393}, Forge +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00604}, Solstice +[6,02], {00899}, Eclipse +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/44Containers.txt b/Data/manifests/44Containers.txt new file mode 100644 index 0000000..eb12fc3 --- /dev/null +++ b/Data/manifests/44Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00723}, Matrix +[1,02], {00862}, Nexus +[1,03], {00659}, Cosmos +[1,04], {00219}, Apollo +[1,05], {00968}, Dynamo +[1,06], {00546}, Echo +[1,07], {00900}, Drift +[1,08], {00945}, Comet +[1,09], {00848}, Polaris +[1,10], {00492}, Cyclone +[1,11], {00652}, Mirage +[2,01], {00458}, Matrix +[2,02], {00000}, UNUSED +[2,03], {00000}, UNUSED +[2,04], {00694}, Beacon +[2,05], {00553}, Nexus +[2,06], {00192}, Crystal +[2,07], {00907}, Voyager +[2,08], {00653}, Cyclone +[2,09], {00524}, Spectrum +[2,10], {00533}, Cosmos +[2,11], {00317}, Beacon +[3,01], {00378}, Circuit +[3,02], {00000}, UNUSED +[3,03], {00000}, UNUSED +[3,04], {00250}, Ember +[3,05], {00561}, Echo +[3,06], {00588}, Stardust +[3,07], {00654}, Cyclone +[3,08], {00613}, Polaris +[3,09], {00446}, Comet +[3,10], {00000}, UNUSED +[3,11], {00258}, Spectrum +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00776}, Atlas +[4,05], {00286}, Zenith +[4,06], {00466}, Zenith +[4,07], {00000}, UNUSED +[4,08], {00473}, Zenith +[4,09], {00809}, Nexus +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00534}, Odyssey +[5,05], {00186}, Nexus +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00626}, Infinity +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00837}, Tesla +[6,05], {00572}, Axis +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00301}, Lunar +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00611}, Titan +[7,05], {00978}, Vertex +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00675}, Nexus +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00809}, Polaris +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00269}, Spectrum +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/45Containers.txt b/Data/manifests/45Containers.txt new file mode 100644 index 0000000..4f0bb47 --- /dev/null +++ b/Data/manifests/45Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00298}, Echo +[1,02], {00979}, Nexus +[1,03], {00919}, Velocity +[1,04], {00832}, Nexus +[1,05], {00956}, Polaris +[1,06], {00710}, Aurora +[1,07], {00417}, Shadow +[1,08], {00653}, Crystal +[1,09], {00937}, Apollo +[1,10], {00152}, Odyssey +[1,11], {00984}, Stardust +[2,01], {00882}, Cosmos +[2,02], {00864}, Zenith +[2,03], {00613}, Forge +[2,04], {00886}, Nimbus +[2,05], {00425}, Vertex +[2,06], {00831}, Horizon +[2,07], {00304}, Horizon +[2,08], {00744}, Spectrum +[2,09], {00897}, Atlas +[2,10], {00119}, Singularity +[2,11], {00000}, UNUSED +[3,01], {00461}, Meteor +[3,02], {00226}, Titan +[3,03], {00000}, UNUSED +[3,04], {00966}, Vertex +[3,05], {00930}, Atlas +[3,06], {00129}, Shard +[3,07], {00223}, Vertex +[3,08], {00849}, Cosmos +[3,09], {00858}, Radiance +[3,10], {00256}, Phoenix +[3,11], {00000}, UNUSED +[4,01], {00372}, Singularity +[4,02], {00000}, UNUSED +[4,03], {00000}, UNUSED +[4,04], {00461}, Apollo +[4,05], {00847}, Aurora +[4,06], {00602}, Forge +[4,07], {00677}, Velocity +[4,08], {00517}, Infinity +[4,09], {00952}, Neptune +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00858}, Prism +[5,05], {00000}, UNUSED +[5,06], {00621}, Aero +[5,07], {00449}, Eclipse +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00886}, Aero +[6,05], {00000}, UNUSED +[6,06], {00615}, Radiance +[6,07], {00609}, Comet +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00241}, Glacier +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00119}, Titan +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/46Containers.txt b/Data/manifests/46Containers.txt new file mode 100644 index 0000000..f222606 --- /dev/null +++ b/Data/manifests/46Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00108}, Gravity +[1,02], {00863}, Vertex +[1,03], {00118}, Atlas +[1,04], {00658}, Nexus +[1,05], {00517}, Cascade +[1,06], {00647}, Glacier +[1,07], {00928}, Arcadia +[1,08], {00427}, Zenith +[1,09], {00524}, Atlas +[1,10], {00314}, Velocity +[1,11], {00413}, Stardust +[2,01], {00193}, Blaze +[2,02], {00868}, Polaris +[2,03], {00763}, Eclipse +[2,04], {00480}, Axis +[2,05], {00928}, Crystal +[2,06], {00777}, Orion +[2,07], {00899}, Horizon +[2,08], {00419}, Sol +[2,09], {00674}, Nova +[2,10], {00366}, Borealis +[2,11], {00886}, Nova +[3,01], {00127}, Twilight +[3,02], {00533}, Quantum +[3,03], {00285}, Meteor +[3,04], {00567}, Voyager +[3,05], {00684}, Axis +[3,06], {00315}, Meteor +[3,07], {00739}, Comet +[3,08], {00695}, Echo +[3,09], {00517}, Cascade +[3,10], {00000}, UNUSED +[3,11], {00338}, Circuit +[4,01], {00000}, UNUSED +[4,02], {00668}, Cyclone +[4,03], {00102}, Matrix +[4,04], {00943}, Nexus +[4,05], {00362}, Ember +[4,06], {00918}, Zenith +[4,07], {00134}, Eclipse +[4,08], {00813}, Arcadia +[4,09], {00000}, UNUSED +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00785}, Matrix +[5,05], {00615}, Borealis +[5,06], {00860}, Singularity +[5,07], {00782}, Sol +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00609}, Orion +[6,06], {00749}, Dynamo +[6,07], {00913}, Shard +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/47Containers.txt b/Data/manifests/47Containers.txt new file mode 100644 index 0000000..845da07 --- /dev/null +++ b/Data/manifests/47Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00440}, Arcadia +[1,02], {00551}, Velocity +[1,03], {00908}, Odyssey +[1,04], {00852}, Cascade +[1,05], {00485}, Spectrum +[1,06], {00644}, Forge +[1,07], {00254}, Echo +[1,08], {00632}, Spectrum +[1,09], {00117}, Cosmos +[1,10], {00678}, Shard +[1,11], {00814}, Blaze +[2,01], {00111}, Everest +[2,02], {00637}, Orion +[2,03], {00343}, Sol +[2,04], {00203}, Circuit +[2,05], {00933}, Horizon +[2,06], {00337}, Glider +[2,07], {00000}, UNUSED +[2,08], {00141}, Borealis +[2,09], {00846}, Eclipse +[2,10], {00380}, Mirage +[2,11], {00318}, Everest +[3,01], {00940}, Glacier +[3,02], {00200}, Eclipse +[3,03], {00593}, Vertex +[3,04], {00643}, Matrix +[3,05], {00174}, Spectrum +[3,06], {00210}, Everest +[3,07], {00000}, UNUSED +[3,08], {00958}, Inferno +[3,09], {00411}, Vortex +[3,10], {00909}, Nimbus +[3,11], {00130}, Twilight +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00957}, Axis +[4,04], {00987}, Tectonic +[4,05], {00963}, Cosmos +[4,06], {00576}, Drift +[4,07], {00000}, UNUSED +[4,08], {00675}, Arcadia +[4,09], {00908}, Crystal +[4,10], {00337}, Circuit +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00381}, Polaris +[5,04], {00553}, Sol +[5,05], {00364}, Zenith +[5,06], {00296}, Echo +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00750}, Borealis +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00923}, Atlas +[6,05], {00000}, UNUSED +[6,06], {00645}, Tectonic +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00680}, Forge +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00697}, Echo +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/48Containers.txt b/Data/manifests/48Containers.txt new file mode 100644 index 0000000..cd467d9 --- /dev/null +++ b/Data/manifests/48Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00680}, Blaze +[1,02], {00893}, Blaze +[1,03], {00352}, Gravity +[1,04], {00394}, Vertex +[1,05], {00469}, Lunar +[1,06], {00762}, Singularity +[1,07], {00352}, Shard +[1,08], {00476}, Cyclone +[1,09], {00685}, Aurora +[1,10], {00548}, Matrix +[1,11], {00000}, UNUSED +[2,01], {00422}, Gravity +[2,02], {00242}, Nova +[2,03], {00821}, Meteor +[2,04], {00521}, Glider +[2,05], {00803}, Nexus +[2,06], {00485}, Titan +[2,07], {00362}, Shard +[2,08], {00268}, Phoenix +[2,09], {00508}, Spectrum +[2,10], {00250}, Echo +[2,11], {00000}, UNUSED +[3,01], {00000}, UNUSED +[3,02], {00355}, Echo +[3,03], {00995}, Stardust +[3,04], {00222}, Twilight +[3,05], {00553}, Solstice +[3,06], {00251}, Matrix +[3,07], {00000}, UNUSED +[3,08], {00776}, Axis +[3,09], {00951}, Beacon +[3,10], {00171}, Nimbus +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00704}, Gravity +[4,03], {00801}, Singularity +[4,04], {00475}, Nexus +[4,05], {00813}, Zephyr +[4,06], {00385}, Cyclone +[4,07], {00000}, UNUSED +[4,08], {00879}, Zephyr +[4,09], {00487}, Titan +[4,10], {00664}, Eclipse +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00462}, Cosmos +[5,03], {00587}, Tesla +[5,04], {00000}, UNUSED +[5,05], {00216}, Phoenix +[5,06], {00180}, Aurora +[5,07], {00000}, UNUSED +[5,08], {00686}, Quantum +[5,09], {00717}, Cascade +[5,10], {00717}, Cyclone +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00636}, Shadow +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00121}, Odyssey +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00189}, Cosmos +[6,09], {00926}, Velocity +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00271}, Stardust +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/49Containers.txt b/Data/manifests/49Containers.txt new file mode 100644 index 0000000..523bdbe --- /dev/null +++ b/Data/manifests/49Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00649}, Atlas +[1,02], {00517}, Matrix +[1,03], {00742}, Tectonic +[1,04], {00568}, Crystal +[1,05], {00645}, Nova +[1,06], {00419}, Blaze +[1,07], {00483}, Phoenix +[1,08], {00761}, Matrix +[1,09], {00477}, Shard +[1,10], {00386}, Shard +[1,11], {00576}, Shard +[2,01], {00167}, Mirage +[2,02], {00984}, Vertex +[2,03], {00102}, Odyssey +[2,04], {00959}, Neptune +[2,05], {00502}, Everest +[2,06], {00878}, Apollo +[2,07], {00000}, UNUSED +[2,08], {00158}, Gravity +[2,09], {00243}, Stardust +[2,10], {00673}, Echo +[2,11], {00621}, Inferno +[3,01], {00757}, Solstice +[3,02], {00201}, Polaris +[3,03], {00369}, Apollo +[3,04], {00974}, Vortex +[3,05], {00475}, Blaze +[3,06], {00428}, Singularity +[3,07], {00000}, UNUSED +[3,08], {00289}, Cyclone +[3,09], {00630}, Echo +[3,10], {00163}, Orion +[3,11], {00000}, UNUSED +[4,01], {00704}, Zenith +[4,02], {00000}, UNUSED +[4,03], {00211}, Aero +[4,04], {00000}, UNUSED +[4,05], {00537}, Eclipse +[4,06], {00842}, Sol +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00676}, Mirage +[4,10], {00554}, Borealis +[4,11], {00000}, UNUSED +[5,01], {00642}, Echo +[5,02], {00000}, UNUSED +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00832}, Forge +[5,06], {00789}, Aurora +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00404}, Spectrum +[5,10], {00388}, Glacier +[5,11], {00000}, UNUSED +[6,01], {00710}, Spectrum +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00210}, Shadow +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00737}, Neptune +[6,11], {00000}, UNUSED +[7,01], {00967}, Odyssey +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00776}, Forge +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00389}, Matrix +[7,11], {00000}, UNUSED +[8,01], {00845}, Twilight +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00453}, Echo +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/50Containers.txt b/Data/manifests/50Containers.txt new file mode 100644 index 0000000..99b81d4 --- /dev/null +++ b/Data/manifests/50Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00233}, Shard +[1,02], {00348}, Polaris +[1,03], {00774}, Aero +[1,04], {00195}, Atlas +[1,05], {00403}, Cascade +[1,06], {00143}, Echo +[1,07], {00565}, Spectrum +[1,08], {00219}, Zenith +[1,09], {00519}, Forge +[1,10], {00223}, Halo +[1,11], {00534}, Eclipse +[2,01], {00000}, UNUSED +[2,02], {00685}, Glider +[2,03], {00629}, Nimbus +[2,04], {00302}, Titan +[2,05], {00946}, Radiance +[2,06], {00990}, Vertex +[2,07], {00893}, Echo +[2,08], {00817}, Solstice +[2,09], {00623}, Glacier +[2,10], {00491}, Forge +[2,11], {00556}, Lunar +[3,01], {00000}, UNUSED +[3,02], {00514}, Nexus +[3,03], {00773}, Tectonic +[3,04], {00488}, Odyssey +[3,05], {00000}, UNUSED +[3,06], {00846}, Voyager +[3,07], {00942}, Comet +[3,08], {00130}, Vertex +[3,09], {00817}, Sol +[3,10], {00716}, Spectrum +[3,11], {00642}, Matrix +[4,01], {00000}, UNUSED +[4,02], {00117}, Everest +[4,03], {00197}, Nexus +[4,04], {00779}, Lunar +[4,05], {00000}, UNUSED +[4,06], {00000}, UNUSED +[4,07], {00667}, Glacier +[4,08], {00695}, Aurora +[4,09], {00000}, UNUSED +[4,10], {00875}, Infinity +[4,11], {00979}, Gravity +[5,01], {00000}, UNUSED +[5,02], {00239}, Vertex +[5,03], {00211}, Zenith +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00000}, UNUSED +[5,08], {00886}, Spectrum +[5,09], {00000}, UNUSED +[5,10], {00704}, Zenith +[5,11], {00157}, Beacon +[6,01], {00000}, UNUSED +[6,02], {00767}, Arcadia +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00558}, Glacier +[6,09], {00000}, UNUSED +[6,10], {00151}, Crystal +[6,11], {00709}, Halo +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00800}, Zenith +[7,11], {00554}, Axis +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00935}, Drift +[8,11], {00566}, Glider diff --git a/Data/manifests/51Containers.txt b/Data/manifests/51Containers.txt new file mode 100644 index 0000000..85311c9 --- /dev/null +++ b/Data/manifests/51Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00919}, Comet +[1,02], {00365}, Glacier +[1,03], {00674}, Singularity +[1,04], {00721}, Lunar +[1,05], {00776}, Vertex +[1,06], {00505}, Nimbus +[1,07], {00217}, Blaze +[1,08], {00639}, Singularity +[1,09], {00980}, Spectrum +[1,10], {00162}, Spectrum +[1,11], {00347}, Odyssey +[2,01], {00721}, Vortex +[2,02], {00952}, Eclipse +[2,03], {00806}, Comet +[2,04], {00343}, Orion +[2,05], {00110}, Prism +[2,06], {00207}, Horizon +[2,07], {00306}, Zenith +[2,08], {00477}, Cosmos +[2,09], {00235}, Everest +[2,10], {00801}, Phoenix +[2,11], {00257}, Tectonic +[3,01], {00254}, Atlas +[3,02], {00352}, Aurora +[3,03], {00577}, Beacon +[3,04], {00212}, Eclipse +[3,05], {00492}, Cyclone +[3,06], {00728}, Comet +[3,07], {00381}, Tectonic +[3,08], {00421}, Cyclone +[3,09], {00000}, UNUSED +[3,10], {00814}, Axis +[3,11], {00126}, Comet +[4,01], {00916}, Shard +[4,02], {00345}, Tesla +[4,03], {00239}, Zenith +[4,04], {00523}, Halo +[4,05], {00720}, Beacon +[4,06], {00297}, Sol +[4,07], {00428}, Orion +[4,08], {00000}, UNUSED +[4,09], {00000}, UNUSED +[4,10], {00308}, Voyager +[4,11], {00000}, UNUSED +[5,01], {00943}, Lunar +[5,02], {00666}, Aero +[5,03], {00101}, Everest +[5,04], {00466}, Orion +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00446}, Drift +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00844}, Echo +[5,11], {00000}, UNUSED +[6,01], {00732}, Eclipse +[6,02], {00183}, Spectrum +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00819}, Aurora +[7,02], {00818}, Shadow +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00446}, Polaris +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/52Containers.txt b/Data/manifests/52Containers.txt new file mode 100644 index 0000000..866e69c --- /dev/null +++ b/Data/manifests/52Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00756}, Drift +[1,02], {00708}, Odyssey +[1,03], {00919}, Solstice +[1,04], {00364}, Mirage +[1,05], {00579}, Glacier +[1,06], {00186}, Circuit +[1,07], {00818}, Spectrum +[1,08], {00446}, Comet +[1,09], {00418}, Echo +[1,10], {00761}, Glacier +[1,11], {00231}, Horizon +[2,01], {00555}, Horizon +[2,02], {00383}, Zephyr +[2,03], {00602}, Polaris +[2,04], {00617}, Axis +[2,05], {00399}, Velocity +[2,06], {00910}, Apollo +[2,07], {00791}, Sol +[2,08], {00929}, Eclipse +[2,09], {00323}, Nexus +[2,10], {00164}, Echo +[2,11], {00127}, Solstice +[3,01], {00000}, UNUSED +[3,02], {00811}, Tectonic +[3,03], {00887}, Singularity +[3,04], {00140}, Polaris +[3,05], {00223}, Drift +[3,06], {00738}, Phoenix +[3,07], {00665}, Lunar +[3,08], {00326}, Sol +[3,09], {00749}, Aurora +[3,10], {00936}, Echo +[3,11], {00000}, UNUSED +[4,01], {00000}, UNUSED +[4,02], {00000}, UNUSED +[4,03], {00114}, Prism +[4,04], {00754}, Eclipse +[4,05], {00633}, Gravity +[4,06], {00113}, Eclipse +[4,07], {00479}, Prism +[4,08], {00000}, UNUSED +[4,09], {00973}, Eclipse +[4,10], {00705}, Orion +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00403}, Polaris +[5,04], {00943}, Spectrum +[5,05], {00211}, Sol +[5,06], {00603}, Tectonic +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00405}, Aero +[5,10], {00165}, Ember +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00473}, Velocity +[6,04], {00650}, Blaze +[6,05], {00368}, Phoenix +[6,06], {00812}, Tesla +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00746}, Meteor +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00493}, Tesla +[7,05], {00000}, UNUSED +[7,06], {00830}, Glider +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00359}, Horizon +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/53Containers.txt b/Data/manifests/53Containers.txt new file mode 100644 index 0000000..efeb6c9 --- /dev/null +++ b/Data/manifests/53Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00516}, Eclipse +[1,02], {00457}, Apollo +[1,03], {00727}, Nexus +[1,04], {00529}, Zephyr +[1,05], {00737}, Tectonic +[1,06], {00218}, Voyager +[1,07], {00180}, Blaze +[1,08], {00855}, Odyssey +[1,09], {00659}, Solstice +[1,10], {00619}, Beacon +[1,11], {00322}, Spectrum +[2,01], {00331}, Aurora +[2,02], {00324}, Vortex +[2,03], {00607}, Borealis +[2,04], {00868}, Cyclone +[2,05], {00345}, Polaris +[2,06], {00195}, Gravity +[2,07], {00552}, Sol +[2,08], {00425}, Polaris +[2,09], {00905}, Zenith +[2,10], {00294}, Polaris +[2,11], {00200}, Blaze +[3,01], {00561}, Comet +[3,02], {00142}, Infinity +[3,03], {00719}, Inferno +[3,04], {00818}, Apollo +[3,05], {00000}, UNUSED +[3,06], {00304}, Vertex +[3,07], {00347}, Comet +[3,08], {00313}, Nimbus +[3,09], {00897}, Odyssey +[3,10], {00586}, Meteor +[3,11], {00782}, Velocity +[4,01], {00334}, Infinity +[4,02], {00502}, Apollo +[4,03], {00747}, Halo +[4,04], {00314}, Halo +[4,05], {00000}, UNUSED +[4,06], {00641}, Arcadia +[4,07], {00996}, Cyclone +[4,08], {00989}, Spectrum +[4,09], {00556}, Nova +[4,10], {00321}, Blaze +[4,11], {00000}, UNUSED +[5,01], {00000}, UNUSED +[5,02], {00906}, Glacier +[5,03], {00296}, Lunar +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00122}, Echo +[5,08], {00118}, Twilight +[5,09], {00469}, Velocity +[5,10], {00287}, Spectrum +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00471}, Nova +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00635}, Polaris +[6,08], {00296}, Twilight +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00206}, Atlas +[7,08], {00929}, Sol +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00412}, Eclipse +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/54Containers.txt b/Data/manifests/54Containers.txt new file mode 100644 index 0000000..1b66f9e --- /dev/null +++ b/Data/manifests/54Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00416}, Polaris +[1,02], {00743}, Meteor +[1,03], {00919}, Forge +[1,04], {00370}, Stardust +[1,05], {00176}, Inferno +[1,06], {00312}, Velocity +[1,07], {00293}, Stardust +[1,08], {00452}, Titan +[1,09], {00830}, Zenith +[1,10], {00734}, Halo +[1,11], {00992}, Cosmos +[2,01], {00622}, Shadow +[2,02], {00639}, Echo +[2,03], {00404}, Drift +[2,04], {00130}, Eclipse +[2,05], {00812}, Gravity +[2,06], {00599}, Eclipse +[2,07], {00328}, Halo +[2,08], {00837}, Spectrum +[2,09], {00636}, Neptune +[2,10], {00195}, Inferno +[2,11], {00000}, UNUSED +[3,01], {00216}, Inferno +[3,02], {00292}, Comet +[3,03], {00464}, Arcadia +[3,04], {00161}, Nova +[3,05], {00471}, Nimbus +[3,06], {00321}, Tesla +[3,07], {00142}, Atlas +[3,08], {00707}, Tesla +[3,09], {00106}, Orion +[3,10], {00863}, Forge +[3,11], {00000}, UNUSED +[4,01], {00829}, Zenith +[4,02], {00688}, Inferno +[4,03], {00615}, Nova +[4,04], {00580}, Polaris +[4,05], {00377}, Twilight +[4,06], {00990}, Quantum +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00959}, Borealis +[4,10], {00809}, Echo +[4,11], {00000}, UNUSED +[5,01], {00202}, Spectrum +[5,02], {00403}, Velocity +[5,03], {00866}, Phoenix +[5,04], {00928}, Zenith +[5,05], {00000}, UNUSED +[5,06], {00359}, Infinity +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00513}, Prism +[5,11], {00000}, UNUSED +[6,01], {00333}, Blaze +[6,02], {00148}, Everest +[6,03], {00000}, UNUSED +[6,04], {00824}, Zephyr +[6,05], {00000}, UNUSED +[6,06], {00173}, Solstice +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00321}, Vortex +[7,02], {00553}, Zenith +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00102}, Zenith +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00569}, Spectrum +[8,02], {00283}, Glacier +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/55Containers.txt b/Data/manifests/55Containers.txt new file mode 100644 index 0000000..038861e --- /dev/null +++ b/Data/manifests/55Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00651}, Eclipse +[1,02], {00638}, Spectrum +[1,03], {00540}, Polaris +[1,04], {00244}, Crystal +[1,05], {00136}, Echo +[1,06], {00965}, Nimbus +[1,07], {00769}, Quantum +[1,08], {00843}, Forge +[1,09], {00256}, Vortex +[1,10], {00596}, Echo +[1,11], {00633}, Phoenix +[2,01], {00274}, Echo +[2,02], {00604}, Cosmos +[2,03], {00255}, Infinity +[2,04], {00184}, Cyclone +[2,05], {00000}, UNUSED +[2,06], {00210}, Neptune +[2,07], {00743}, Radiance +[2,08], {00517}, Mirage +[2,09], {00927}, Nexus +[2,10], {00964}, Quantum +[2,11], {00932}, Prism +[3,01], {00555}, Comet +[3,02], {00897}, Echo +[3,03], {00226}, Quantum +[3,04], {00515}, Zenith +[3,05], {00000}, UNUSED +[3,06], {00212}, Zephyr +[3,07], {00899}, Halo +[3,08], {00395}, Ember +[3,09], {00507}, Prism +[3,10], {00363}, Circuit +[3,11], {00354}, Cascade +[4,01], {00170}, Glider +[4,02], {00000}, UNUSED +[4,03], {00418}, Inferno +[4,04], {00304}, Vortex +[4,05], {00000}, UNUSED +[4,06], {00868}, Borealis +[4,07], {00000}, UNUSED +[4,08], {00212}, Circuit +[4,09], {00254}, Vortex +[4,10], {00968}, Apollo +[4,11], {00653}, Velocity +[5,01], {00628}, Echo +[5,02], {00000}, UNUSED +[5,03], {00732}, Velocity +[5,04], {00928}, Matrix +[5,05], {00000}, UNUSED +[5,06], {00487}, Sol +[5,07], {00000}, UNUSED +[5,08], {00669}, Zenith +[5,09], {00553}, Zenith +[5,10], {00348}, Beacon +[5,11], {00260}, Tectonic +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00978}, Atlas +[6,04], {00215}, Horizon +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00413}, Atlas +[6,10], {00000}, UNUSED +[6,11], {00637}, Infinity +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00660}, Orion +[7,04], {00652}, Atlas +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00746}, Radiance +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00448}, Nexus +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/56Containers.txt b/Data/manifests/56Containers.txt new file mode 100644 index 0000000..9ce8696 --- /dev/null +++ b/Data/manifests/56Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00643}, Titan +[1,02], {00968}, Zenith +[1,03], {00145}, Zenith +[1,04], {00911}, Quantum +[1,05], {00919}, Orion +[1,06], {00509}, Drift +[1,07], {00367}, Blaze +[1,08], {00786}, Spectrum +[1,09], {00822}, Meteor +[1,10], {00455}, Crystal +[1,11], {00749}, Shadow +[2,01], {00719}, Vertex +[2,02], {00367}, Vertex +[2,03], {00144}, Cascade +[2,04], {00500}, Prism +[2,05], {00243}, Matrix +[2,06], {00540}, Glacier +[2,07], {00683}, Spectrum +[2,08], {00257}, Glacier +[2,09], {00649}, Nova +[2,10], {00407}, Crystal +[2,11], {00582}, Sol +[3,01], {00897}, Borealis +[3,02], {00910}, Horizon +[3,03], {00440}, Apollo +[3,04], {00000}, UNUSED +[3,05], {00252}, Blaze +[3,06], {00645}, Beacon +[3,07], {00268}, Spectrum +[3,08], {00723}, Zephyr +[3,09], {00101}, Spectrum +[3,10], {00673}, Nimbus +[3,11], {00000}, UNUSED +[4,01], {00365}, Zenith +[4,02], {00751}, Apollo +[4,03], {00217}, Arcadia +[4,04], {00000}, UNUSED +[4,05], {00599}, Gravity +[4,06], {00912}, Apollo +[4,07], {00925}, Aurora +[4,08], {00132}, Atlas +[4,09], {00832}, Zenith +[4,10], {00781}, Cosmos +[4,11], {00000}, UNUSED +[5,01], {00830}, Phoenix +[5,02], {00992}, Lunar +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00429}, Prism +[5,06], {00874}, Spectrum +[5,07], {00000}, UNUSED +[5,08], {00308}, Polaris +[5,09], {00000}, UNUSED +[5,10], {00984}, Nova +[5,11], {00000}, UNUSED +[6,01], {00382}, Eclipse +[6,02], {00000}, UNUSED +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00249}, Borealis +[6,06], {00530}, Nova +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00946}, Orion +[6,11], {00000}, UNUSED +[7,01], {00723}, Glacier +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00222}, Orion +[7,06], {00980}, Nova +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00861}, Velocity +[7,11], {00000}, UNUSED +[8,01], {00556}, Tesla +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00539}, Vertex +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/57Containers.txt b/Data/manifests/57Containers.txt new file mode 100644 index 0000000..e5069c2 --- /dev/null +++ b/Data/manifests/57Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00512}, Radiance +[1,02], {00835}, Dynamo +[1,03], {00957}, Singularity +[1,04], {00923}, Velocity +[1,05], {00443}, Blaze +[1,06], {00403}, Neptune +[1,07], {00723}, Everest +[1,08], {00777}, Drift +[1,09], {00382}, Quantum +[1,10], {00553}, Everest +[1,11], {00109}, Vertex +[2,01], {00457}, Prism +[2,02], {00325}, Tectonic +[2,03], {00139}, Orion +[2,04], {00881}, Tectonic +[2,05], {00488}, Stardust +[2,06], {00640}, Shard +[2,07], {00635}, Comet +[2,08], {00864}, Arcadia +[2,09], {00751}, Circuit +[2,10], {00461}, Blaze +[2,11], {00979}, Glacier +[3,01], {00934}, Orion +[3,02], {00159}, Titan +[3,03], {00916}, Crystal +[3,04], {00207}, Singularity +[3,05], {00957}, Shard +[3,06], {00305}, Glider +[3,07], {00635}, Cascade +[3,08], {00000}, UNUSED +[3,09], {00517}, Nova +[3,10], {00780}, Comet +[3,11], {00475}, Zenith +[4,01], {00000}, UNUSED +[4,02], {00857}, Atlas +[4,03], {00500}, Matrix +[4,04], {00759}, Circuit +[4,05], {00683}, Gravity +[4,06], {00176}, Echo +[4,07], {00000}, UNUSED +[4,08], {00000}, UNUSED +[4,09], {00868}, Vortex +[4,10], {00217}, Ember +[4,11], {00801}, Shard +[5,01], {00000}, UNUSED +[5,02], {00826}, Apollo +[5,03], {00182}, Quantum +[5,04], {00513}, Nexus +[5,05], {00893}, Horizon +[5,06], {00941}, Ember +[5,07], {00000}, UNUSED +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00952}, Aero +[5,11], {00597}, Zenith +[6,01], {00000}, UNUSED +[6,02], {00278}, Glacier +[6,03], {00824}, Forge +[6,04], {00000}, UNUSED +[6,05], {00336}, Aurora +[6,06], {00177}, Beacon +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00402}, Nimbus +[6,11], {00434}, Singularity +[7,01], {00000}, UNUSED +[7,02], {00831}, Vortex +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00602}, Lunar +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00479}, Blaze +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00172}, Radiance +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/58Containers.txt b/Data/manifests/58Containers.txt new file mode 100644 index 0000000..5733ac5 --- /dev/null +++ b/Data/manifests/58Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00858}, Nexus +[1,02], {00889}, Circuit +[1,03], {00700}, Voyager +[1,04], {00745}, Everest +[1,05], {00505}, Aero +[1,06], {00460}, Echo +[1,07], {00613}, Eclipse +[1,08], {00748}, Radiance +[1,09], {00387}, Aero +[1,10], {00871}, Axis +[1,11], {00305}, Drift +[2,01], {00354}, Gravity +[2,02], {00184}, Shadow +[2,03], {00598}, Zenith +[2,04], {00596}, Glacier +[2,05], {00228}, Matrix +[2,06], {00684}, Cyclone +[2,07], {00261}, Halo +[2,08], {00751}, Infinity +[2,09], {00357}, Inferno +[2,10], {00712}, Infinity +[2,11], {00397}, Nexus +[3,01], {00516}, Blaze +[3,02], {00425}, Neptune +[3,03], {00427}, Solstice +[3,04], {00818}, Odyssey +[3,05], {00358}, Mirage +[3,06], {00455}, Sol +[3,07], {00306}, Vertex +[3,08], {00986}, Ember +[3,09], {00247}, Lunar +[3,10], {00194}, Quantum +[3,11], {00438}, Nova +[4,01], {00135}, Quantum +[4,02], {00000}, UNUSED +[4,03], {00676}, Vortex +[4,04], {00461}, Spectrum +[4,05], {00573}, Inferno +[4,06], {00000}, UNUSED +[4,07], {00617}, Glacier +[4,08], {00459}, Cosmos +[4,09], {00413}, Vertex +[4,10], {00285}, Echo +[4,11], {00356}, Forge +[5,01], {00000}, UNUSED +[5,02], {00000}, UNUSED +[5,03], {00882}, Dynamo +[5,04], {00382}, Echo +[5,05], {00571}, Vertex +[5,06], {00000}, UNUSED +[5,07], {00620}, Meteor +[5,08], {00000}, UNUSED +[5,09], {00677}, Everest +[5,10], {00426}, Zenith +[5,11], {00349}, Prism +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00325}, Zephyr +[6,04], {00885}, Solstice +[6,05], {00159}, Cascade +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00826}, Cascade +[6,11], {00784}, Shadow +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00953}, Nimbus +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00276}, Voyager +[7,11], {00685}, Inferno +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00281}, Echo +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/59Containers.txt b/Data/manifests/59Containers.txt new file mode 100644 index 0000000..20c200e --- /dev/null +++ b/Data/manifests/59Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00483}, Spectrum +[1,02], {00558}, Twilight +[1,03], {00505}, Axis +[1,04], {00959}, Comet +[1,05], {00853}, Everest +[1,06], {00278}, Titan +[1,07], {00676}, Orion +[1,08], {00451}, Inferno +[1,09], {00912}, Neptune +[1,10], {00111}, Comet +[1,11], {00198}, Borealis +[2,01], {00199}, Spectrum +[2,02], {00454}, Polaris +[2,03], {00257}, Sol +[2,04], {00229}, Zenith +[2,05], {00401}, Beacon +[2,06], {00999}, Orion +[2,07], {00361}, Spectrum +[2,08], {00825}, Singularity +[2,09], {00407}, Nova +[2,10], {00642}, Cosmos +[2,11], {00745}, Echo +[3,01], {00684}, Meteor +[3,02], {00136}, Apollo +[3,03], {00674}, Horizon +[3,04], {00578}, Aurora +[3,05], {00620}, Quantum +[3,06], {00419}, Everest +[3,07], {00179}, Circuit +[3,08], {00256}, Velocity +[3,09], {00520}, Glacier +[3,10], {00429}, Spectrum +[3,11], {00358}, Borealis +[4,01], {00000}, UNUSED +[4,02], {00686}, Twilight +[4,03], {00655}, Orion +[4,04], {00980}, Spectrum +[4,05], {00280}, Crystal +[4,06], {00263}, Comet +[4,07], {00000}, UNUSED +[4,08], {00125}, Cascade +[4,09], {00509}, Infinity +[4,10], {00154}, Aurora +[4,11], {00267}, Solstice +[5,01], {00000}, UNUSED +[5,02], {00404}, Arcadia +[5,03], {00000}, UNUSED +[5,04], {00447}, Polaris +[5,05], {00000}, UNUSED +[5,06], {00397}, Odyssey +[5,07], {00000}, UNUSED +[5,08], {00241}, Twilight +[5,09], {00644}, Spectrum +[5,10], {00317}, Solstice +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00564}, Drift +[6,03], {00000}, UNUSED +[6,04], {00507}, Sol +[6,05], {00000}, UNUSED +[6,06], {00324}, Borealis +[6,07], {00000}, UNUSED +[6,08], {00765}, Titan +[6,09], {00917}, Voyager +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00837}, Polaris +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00886}, Echo +[7,09], {00538}, Radiance +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00858}, Tectonic +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00608}, Velocity +[8,09], {00789}, Lunar +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/60Containers.txt b/Data/manifests/60Containers.txt new file mode 100644 index 0000000..650dd9d --- /dev/null +++ b/Data/manifests/60Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00229}, Arcadia +[1,02], {00809}, Dynamo +[1,03], {00943}, Glacier +[1,04], {00209}, Cosmos +[1,05], {00138}, Prism +[1,06], {00199}, Velocity +[1,07], {00964}, Shadow +[1,08], {00322}, Eclipse +[1,09], {00122}, Neptune +[1,10], {00750}, Everest +[1,11], {00870}, Nimbus +[2,01], {00116}, Sol +[2,02], {00859}, Spectrum +[2,03], {00617}, Phoenix +[2,04], {00631}, Axis +[2,05], {00618}, Singularity +[2,06], {00857}, Tectonic +[2,07], {00902}, Zenith +[2,08], {00286}, Sol +[2,09], {00663}, Aurora +[2,10], {00118}, Horizon +[2,11], {00686}, Velocity +[3,01], {00591}, Everest +[3,02], {00189}, Matrix +[3,03], {00534}, Tesla +[3,04], {00119}, Sol +[3,05], {00154}, Zenith +[3,06], {00163}, Everest +[3,07], {00638}, Infinity +[3,08], {00529}, Echo +[3,09], {00900}, Echo +[3,10], {00821}, Apollo +[3,11], {00160}, Lunar +[4,01], {00329}, Shadow +[4,02], {00276}, Zenith +[4,03], {00772}, Nova +[4,04], {00778}, Atlas +[4,05], {00512}, Borealis +[4,06], {00961}, Zenith +[4,07], {00402}, Zenith +[4,08], {00190}, Dynamo +[4,09], {00573}, Radiance +[4,10], {00426}, Odyssey +[4,11], {00514}, Shard +[5,01], {00135}, Vertex +[5,02], {00615}, Halo +[5,03], {00340}, Glacier +[5,04], {00379}, Horizon +[5,05], {00386}, Mirage +[5,06], {00000}, UNUSED +[5,07], {00660}, Beacon +[5,08], {00000}, UNUSED +[5,09], {00213}, Vertex +[5,10], {00148}, Zenith +[5,11], {00675}, Stardust +[6,01], {00000}, UNUSED +[6,02], {00000}, UNUSED +[6,03], {00207}, Orion +[6,04], {00554}, Twilight +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00383}, Horizon +[6,08], {00000}, UNUSED +[6,09], {00917}, Nexus +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00000}, UNUSED +[7,03], {00880}, Velocity +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00130}, Orion +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00305}, Eclipse +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/61Containers.txt b/Data/manifests/61Containers.txt new file mode 100644 index 0000000..34ac3b0 --- /dev/null +++ b/Data/manifests/61Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00613}, Eclipse +[1,02], {00666}, Quantum +[1,03], {00303}, Tesla +[1,04], {00802}, Mirage +[1,05], {00374}, Shadow +[1,06], {00188}, Zenith +[1,07], {00261}, Solstice +[1,08], {00690}, Axis +[1,09], {00744}, Atlas +[1,10], {00493}, Mirage +[1,11], {00401}, Atlas +[2,01], {00283}, Twilight +[2,02], {00464}, Odyssey +[2,03], {00996}, Glider +[2,04], {00751}, Spectrum +[2,05], {00746}, Spectrum +[2,06], {00137}, Matrix +[2,07], {00659}, Dynamo +[2,08], {00165}, Zenith +[2,09], {00723}, Shadow +[2,10], {00487}, Shadow +[2,11], {00907}, Spectrum +[3,01], {00718}, Circuit +[3,02], {00731}, Velocity +[3,03], {00104}, Crystal +[3,04], {00657}, Nimbus +[3,05], {00249}, Shard +[3,06], {00887}, Phoenix +[3,07], {00221}, Velocity +[3,08], {00693}, Eclipse +[3,09], {00000}, UNUSED +[3,10], {00387}, Glider +[3,11], {00872}, Echo +[4,01], {00328}, Eclipse +[4,02], {00328}, Infinity +[4,03], {00914}, Voyager +[4,04], {00183}, Solstice +[4,05], {00631}, Spectrum +[4,06], {00754}, Polaris +[4,07], {00649}, Eclipse +[4,08], {00699}, Zenith +[4,09], {00000}, UNUSED +[4,10], {00307}, Sol +[4,11], {00199}, Zephyr +[5,01], {00000}, UNUSED +[5,02], {00809}, Everest +[5,03], {00118}, Cyclone +[5,04], {00000}, UNUSED +[5,05], {00000}, UNUSED +[5,06], {00821}, Apollo +[5,07], {00100}, Solstice +[5,08], {00389}, Velocity +[5,09], {00000}, UNUSED +[5,10], {00405}, Phoenix +[5,11], {00958}, Gravity +[6,01], {00000}, UNUSED +[6,02], {00797}, Mirage +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00000}, UNUSED +[6,06], {00376}, Mirage +[6,07], {00439}, Gravity +[6,08], {00294}, Horizon +[6,09], {00000}, UNUSED +[6,10], {00632}, Mirage +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00869}, Aero +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00729}, Lunar +[7,08], {00540}, Arcadia +[7,09], {00000}, UNUSED +[7,10], {00245}, Stardust +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00705}, Infinity +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00997}, Crystal +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00951}, Vertex +[8,11], {00000}, UNUSED diff --git a/Data/manifests/62Containers.txt b/Data/manifests/62Containers.txt new file mode 100644 index 0000000..601370a --- /dev/null +++ b/Data/manifests/62Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00562}, Zenith +[1,02], {00939}, Beacon +[1,03], {00349}, Neptune +[1,04], {00442}, Drift +[1,05], {00588}, Spectrum +[1,06], {00185}, Neptune +[1,07], {00549}, Tesla +[1,08], {00249}, Zephyr +[1,09], {00162}, Borealis +[1,10], {00210}, Velocity +[1,11], {00654}, Singularity +[2,01], {00683}, Velocity +[2,02], {00959}, Nimbus +[2,03], {00278}, Voyager +[2,04], {00926}, Twilight +[2,05], {00122}, Everest +[2,06], {00513}, Shadow +[2,07], {00625}, Odyssey +[2,08], {00810}, Glider +[2,09], {00398}, Crystal +[2,10], {00975}, Comet +[2,11], {00342}, Apollo +[3,01], {00834}, Singularity +[3,02], {00933}, Neptune +[3,03], {00585}, Tectonic +[3,04], {00149}, Velocity +[3,05], {00903}, Voyager +[3,06], {00669}, Arcadia +[3,07], {00618}, Horizon +[3,08], {00760}, Horizon +[3,09], {00962}, Borealis +[3,10], {00929}, Atlas +[3,11], {00145}, Mirage +[4,01], {00427}, Vertex +[4,02], {00430}, Axis +[4,03], {00175}, Spectrum +[4,04], {00342}, Velocity +[4,05], {00361}, Twilight +[4,06], {00909}, Stardust +[4,07], {00966}, Aero +[4,08], {00992}, Echo +[4,09], {00380}, Prism +[4,10], {00591}, Shard +[4,11], {00903}, Axis +[5,01], {00124}, Zephyr +[5,02], {00818}, Cosmos +[5,03], {00494}, Cyclone +[5,04], {00117}, Horizon +[5,05], {00423}, Drift +[5,06], {00000}, UNUSED +[5,07], {00281}, Titan +[5,08], {00000}, UNUSED +[5,09], {00000}, UNUSED +[5,10], {00000}, UNUSED +[5,11], {00751}, Vertex +[6,01], {00000}, UNUSED +[6,02], {00786}, Prism +[6,03], {00436}, Twilight +[6,04], {00611}, Neptune +[6,05], {00644}, Twilight +[6,06], {00000}, UNUSED +[6,07], {00861}, Spectrum +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00752}, Sol +[7,01], {00000}, UNUSED +[7,02], {00954}, Singularity +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00978}, Titan +[7,06], {00000}, UNUSED +[7,07], {00475}, Shard +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00335}, Meteor +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00793}, Singularity +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/63Containers.txt b/Data/manifests/63Containers.txt new file mode 100644 index 0000000..977ff09 --- /dev/null +++ b/Data/manifests/63Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00377}, Vertex +[1,02], {00671}, Vertex +[1,03], {00704}, Mirage +[1,04], {00767}, Eclipse +[1,05], {00872}, Neptune +[1,06], {00781}, Arcadia +[1,07], {00661}, Polaris +[1,08], {00887}, Everest +[1,09], {00997}, Shadow +[1,10], {00415}, Cascade +[1,11], {00249}, Shard +[2,01], {00865}, Apollo +[2,02], {00635}, Spectrum +[2,03], {00730}, Singularity +[2,04], {00193}, Horizon +[2,05], {00781}, Horizon +[2,06], {00000}, UNUSED +[2,07], {00239}, Nexus +[2,08], {00543}, Eclipse +[2,09], {00610}, Echo +[2,10], {00705}, Borealis +[2,11], {00773}, Cyclone +[3,01], {00635}, Quantum +[3,02], {00158}, Tesla +[3,03], {00328}, Tectonic +[3,04], {00598}, Vertex +[3,05], {00443}, Solstice +[3,06], {00000}, UNUSED +[3,07], {00959}, Atlas +[3,08], {00219}, Matrix +[3,09], {00159}, Spectrum +[3,10], {00808}, Stardust +[3,11], {00351}, Nimbus +[4,01], {00121}, Cascade +[4,02], {00749}, Sol +[4,03], {00284}, Gravity +[4,04], {00688}, Radiance +[4,05], {00419}, Velocity +[4,06], {00000}, UNUSED +[4,07], {00522}, Spectrum +[4,08], {00284}, Zenith +[4,09], {00262}, Axis +[4,10], {00129}, Aurora +[4,11], {00379}, Polaris +[5,01], {00489}, Phoenix +[5,02], {00303}, Halo +[5,03], {00935}, Vortex +[5,04], {00161}, Singularity +[5,05], {00897}, Cyclone +[5,06], {00000}, UNUSED +[5,07], {00416}, Echo +[5,08], {00968}, Echo +[5,09], {00000}, UNUSED +[5,10], {00268}, Vertex +[5,11], {00707}, Drift +[6,01], {00638}, Echo +[6,02], {00000}, UNUSED +[6,03], {00937}, Borealis +[6,04], {00862}, Arcadia +[6,05], {00315}, Radiance +[6,06], {00000}, UNUSED +[6,07], {00479}, Sol +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00427}, Shard +[6,11], {00763}, Mirage +[7,01], {00745}, Inferno +[7,02], {00000}, UNUSED +[7,03], {00981}, Velocity +[7,04], {00000}, UNUSED +[7,05], {00931}, Ember +[7,06], {00000}, UNUSED +[7,07], {00458}, Crystal +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00461}, Nova +[8,06], {00000}, UNUSED +[8,07], {00942}, Lunar +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/64Containers.txt b/Data/manifests/64Containers.txt new file mode 100644 index 0000000..3cfd2f2 --- /dev/null +++ b/Data/manifests/64Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00148}, Aero +[1,02], {00759}, Aero +[1,03], {00968}, Eclipse +[1,04], {00248}, Drift +[1,05], {00901}, Eclipse +[1,06], {00460}, Zephyr +[1,07], {00486}, Spectrum +[1,08], {00298}, Shadow +[1,09], {00775}, Everest +[1,10], {00389}, Vertex +[1,11], {00789}, Cyclone +[2,01], {00156}, Stardust +[2,02], {00902}, Velocity +[2,03], {00129}, Twilight +[2,04], {00751}, Tectonic +[2,05], {00803}, Circuit +[2,06], {00114}, Sol +[2,07], {00877}, Spectrum +[2,08], {00565}, Velocity +[2,09], {00771}, Forge +[2,10], {00947}, Vertex +[2,11], {00372}, Tectonic +[3,01], {00694}, Apollo +[3,02], {00770}, Glacier +[3,03], {00204}, Vertex +[3,04], {00626}, Prism +[3,05], {00943}, Atlas +[3,06], {00226}, Drift +[3,07], {00568}, Nexus +[3,08], {00780}, Spectrum +[3,09], {00710}, Vertex +[3,10], {00870}, Titan +[3,11], {00640}, Spectrum +[4,01], {00406}, Glider +[4,02], {00563}, Shadow +[4,03], {00000}, UNUSED +[4,04], {00957}, Cosmos +[4,05], {00939}, Zephyr +[4,06], {00824}, Ember +[4,07], {00576}, Arcadia +[4,08], {00951}, Voyager +[4,09], {00263}, Titan +[4,10], {00158}, Nova +[4,11], {00765}, Vortex +[5,01], {00000}, UNUSED +[5,02], {00396}, Glider +[5,03], {00000}, UNUSED +[5,04], {00718}, Horizon +[5,05], {00950}, Eclipse +[5,06], {00547}, Shadow +[5,07], {00765}, Comet +[5,08], {00973}, Velocity +[5,09], {00432}, Zenith +[5,10], {00000}, UNUSED +[5,11], {00621}, Atlas +[6,01], {00000}, UNUSED +[6,02], {00430}, Vertex +[6,03], {00000}, UNUSED +[6,04], {00524}, Halo +[6,05], {00218}, Circuit +[6,06], {00329}, Shard +[6,07], {00000}, UNUSED +[6,08], {00453}, Comet +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00373}, Odyssey +[7,01], {00000}, UNUSED +[7,02], {00338}, Horizon +[7,03], {00000}, UNUSED +[7,04], {00403}, Glider +[7,05], {00214}, Arcadia +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00992}, Infinity +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00253}, Cosmos +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00307}, Voyager +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00558}, Borealis diff --git a/Data/manifests/65Containers.txt b/Data/manifests/65Containers.txt new file mode 100644 index 0000000..8f7df3d --- /dev/null +++ b/Data/manifests/65Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00323}, Cascade +[1,02], {00616}, Glacier +[1,03], {00262}, Prism +[1,04], {00195}, Velocity +[1,05], {00691}, Circuit +[1,06], {00751}, Spectrum +[1,07], {00245}, Voyager +[1,08], {00384}, Velocity +[1,09], {00717}, Radiance +[1,10], {00515}, Velocity +[1,11], {00405}, Echo +[2,01], {00913}, Ember +[2,02], {00273}, Circuit +[2,03], {00249}, Shard +[2,04], {00612}, Spectrum +[2,05], {00959}, Prism +[2,06], {00737}, Nimbus +[2,07], {00900}, Cascade +[2,08], {00791}, Crystal +[2,09], {00810}, Orion +[2,10], {00226}, Dynamo +[2,11], {00610}, Echo +[3,01], {00694}, Polaris +[3,02], {00910}, Forge +[3,03], {00437}, Glider +[3,04], {00190}, Glacier +[3,05], {00807}, Eclipse +[3,06], {00776}, Horizon +[3,07], {00810}, Nova +[3,08], {00158}, Forge +[3,09], {00957}, Dynamo +[3,10], {00675}, Orion +[3,11], {00808}, Titan +[4,01], {00266}, Mirage +[4,02], {00505}, Horizon +[4,03], {00334}, Horizon +[4,04], {00712}, Circuit +[4,05], {00417}, Spectrum +[4,06], {00766}, Infinity +[4,07], {00682}, Beacon +[4,08], {00000}, UNUSED +[4,09], {00747}, Blaze +[4,10], {00632}, Mirage +[4,11], {00721}, Zenith +[5,01], {00191}, Spectrum +[5,02], {00143}, Velocity +[5,03], {00955}, Vertex +[5,04], {00197}, Meteor +[5,05], {00000}, UNUSED +[5,06], {00000}, UNUSED +[5,07], {00977}, Sol +[5,08], {00000}, UNUSED +[5,09], {00807}, Nexus +[5,10], {00303}, Glider +[5,11], {00568}, Spectrum +[6,01], {00364}, Circuit +[6,02], {00601}, Odyssey +[6,03], {00389}, Velocity +[6,04], {00701}, Twilight +[6,05], {00000}, UNUSED +[6,06], {00000}, UNUSED +[6,07], {00730}, Singularity +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00107}, Horizon +[6,11], {00000}, UNUSED +[7,01], {00315}, Horizon +[7,02], {00108}, Borealis +[7,03], {00000}, UNUSED +[7,04], {00949}, Velocity +[7,05], {00000}, UNUSED +[7,06], {00000}, UNUSED +[7,07], {00593}, Velocity +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00916}, Borealis +[7,11], {00000}, UNUSED +[8,01], {00352}, Comet +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00969}, Ember +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00997}, Halo +[8,11], {00000}, UNUSED diff --git a/Data/manifests/66Containers.txt b/Data/manifests/66Containers.txt new file mode 100644 index 0000000..fa4121c --- /dev/null +++ b/Data/manifests/66Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00377}, Circuit +[1,02], {00255}, Neptune +[1,03], {00590}, Spectrum +[1,04], {00341}, Beacon +[1,05], {00228}, Aero +[1,06], {00949}, Phoenix +[1,07], {00968}, Zephyr +[1,08], {00855}, Velocity +[1,09], {00200}, Cascade +[1,10], {00556}, Horizon +[1,11], {00355}, Spectrum +[2,01], {00963}, Twilight +[2,02], {00823}, Meteor +[2,03], {00651}, Glider +[2,04], {00389}, Mirage +[2,05], {00465}, Orion +[2,06], {00496}, Velocity +[2,07], {00836}, Spectrum +[2,08], {00593}, Echo +[2,09], {00316}, Aero +[2,10], {00245}, Blaze +[2,11], {00697}, Eclipse +[3,01], {00982}, Horizon +[3,02], {00152}, Twilight +[3,03], {00806}, Tesla +[3,04], {00742}, Horizon +[3,05], {00106}, Orion +[3,06], {00741}, Singularity +[3,07], {00676}, Gravity +[3,08], {00955}, Spectrum +[3,09], {00284}, Aero +[3,10], {00992}, Odyssey +[3,11], {00274}, Spectrum +[4,01], {00788}, Cascade +[4,02], {00410}, Matrix +[4,03], {00920}, Nova +[4,04], {00197}, Aurora +[4,05], {00341}, Odyssey +[4,06], {00742}, Zenith +[4,07], {00800}, Echo +[4,08], {00933}, Singularity +[4,09], {00127}, Aero +[4,10], {00129}, Beacon +[4,11], {00231}, Twilight +[5,01], {00807}, Vertex +[5,02], {00948}, Quantum +[5,03], {00714}, Spectrum +[5,04], {00900}, Phoenix +[5,05], {00353}, Inferno +[5,06], {00493}, Comet +[5,07], {00712}, Meteor +[5,08], {00626}, Velocity +[5,09], {00293}, Circuit +[5,10], {00582}, Beacon +[5,11], {00836}, Zenith +[6,01], {00704}, Neptune +[6,02], {00000}, UNUSED +[6,03], {00283}, Apollo +[6,04], {00000}, UNUSED +[6,05], {00461}, Vertex +[6,06], {00596}, Drift +[6,07], {00000}, UNUSED +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00909}, Velocity +[7,01], {00644}, Lunar +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00503}, Twilight +[7,06], {00714}, Spectrum +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00782}, Solstice +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00431}, Cyclone +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00324}, Singularity diff --git a/Data/manifests/67Containers.txt b/Data/manifests/67Containers.txt new file mode 100644 index 0000000..03073e4 --- /dev/null +++ b/Data/manifests/67Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00868}, Nimbus +[1,02], {00137}, Drift +[1,03], {00537}, Vertex +[1,04], {00893}, Quantum +[1,05], {00999}, Spectrum +[1,06], {00279}, Eclipse +[1,07], {00474}, Comet +[1,08], {00411}, Nimbus +[1,09], {00914}, Glacier +[1,10], {00448}, Ember +[1,11], {00681}, Cyclone +[2,01], {00564}, Echo +[2,02], {00273}, Tectonic +[2,03], {00446}, Gravity +[2,04], {00727}, Cosmos +[2,05], {00664}, Atlas +[2,06], {00988}, Aero +[2,07], {00259}, Apollo +[2,08], {00851}, Dynamo +[2,09], {00338}, Matrix +[2,10], {00520}, Titan +[2,11], {00000}, UNUSED +[3,01], {00673}, Vortex +[3,02], {00184}, Crystal +[3,03], {00713}, Zephyr +[3,04], {00699}, Vortex +[3,05], {00187}, Orion +[3,06], {00146}, Velocity +[3,07], {00151}, Zenith +[3,08], {00578}, Spectrum +[3,09], {00802}, Glacier +[3,10], {00000}, UNUSED +[3,11], {00000}, UNUSED +[4,01], {00532}, Horizon +[4,02], {00687}, Inferno +[4,03], {00136}, Nova +[4,04], {00248}, Vertex +[4,05], {00377}, Radiance +[4,06], {00634}, Everest +[4,07], {00392}, Beacon +[4,08], {00701}, Vortex +[4,09], {00800}, Zephyr +[4,10], {00000}, UNUSED +[4,11], {00000}, UNUSED +[5,01], {00493}, Spectrum +[5,02], {00147}, Twilight +[5,03], {00112}, Eclipse +[5,04], {00828}, Twilight +[5,05], {00724}, Zephyr +[5,06], {00854}, Horizon +[5,07], {00904}, Spectrum +[5,08], {00148}, Infinity +[5,09], {00845}, Glider +[5,10], {00000}, UNUSED +[5,11], {00000}, UNUSED +[6,01], {00708}, Prism +[6,02], {00854}, Titan +[6,03], {00881}, Singularity +[6,04], {00000}, UNUSED +[6,05], {00124}, Twilight +[6,06], {00872}, Tectonic +[6,07], {00951}, Cosmos +[6,08], {00424}, Drift +[6,09], {00490}, Odyssey +[6,10], {00000}, UNUSED +[6,11], {00000}, UNUSED +[7,01], {00493}, Shadow +[7,02], {00475}, Vertex +[7,03], {00611}, Vortex +[7,04], {00000}, UNUSED +[7,05], {00378}, Zenith +[7,06], {00787}, Glacier +[7,07], {00527}, Drift +[7,08], {00894}, Nimbus +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00000}, UNUSED +[8,01], {00430}, Velocity +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00159}, Tectonic +[8,06], {00414}, Cyclone +[8,07], {00000}, UNUSED +[8,08], {00548}, Zenith +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/68Containers.txt b/Data/manifests/68Containers.txt new file mode 100644 index 0000000..3898ce0 --- /dev/null +++ b/Data/manifests/68Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00472}, Circuit +[1,02], {00854}, Shard +[1,03], {00706}, Glacier +[1,04], {00641}, Nexus +[1,05], {00455}, Zephyr +[1,06], {00525}, Orion +[1,07], {00698}, Circuit +[1,08], {00869}, Eclipse +[1,09], {00970}, Horizon +[1,10], {00360}, Sol +[1,11], {00514}, Mirage +[2,01], {00455}, Comet +[2,02], {00234}, Forge +[2,03], {00200}, Axis +[2,04], {00386}, Zenith +[2,05], {00716}, Apollo +[2,06], {00599}, Orion +[2,07], {00440}, Zenith +[2,08], {00971}, Cyclone +[2,09], {00322}, Spectrum +[2,10], {00288}, Eclipse +[2,11], {00000}, UNUSED +[3,01], {00543}, Tectonic +[3,02], {00554}, Shadow +[3,03], {00934}, Solstice +[3,04], {00253}, Tectonic +[3,05], {00958}, Vortex +[3,06], {00619}, Infinity +[3,07], {00524}, Shadow +[3,08], {00688}, Nexus +[3,09], {00471}, Nova +[3,10], {00108}, Lunar +[3,11], {00000}, UNUSED +[4,01], {00309}, Beacon +[4,02], {00683}, Nimbus +[4,03], {00194}, Glacier +[4,04], {00425}, Spectrum +[4,05], {00604}, Aero +[4,06], {00591}, Twilight +[4,07], {00216}, Blaze +[4,08], {00157}, Horizon +[4,09], {00515}, Prism +[4,10], {00437}, Solstice +[4,11], {00000}, UNUSED +[5,01], {00501}, Aurora +[5,02], {00566}, Tectonic +[5,03], {00685}, Singularity +[5,04], {00481}, Solstice +[5,05], {00461}, Mirage +[5,06], {00689}, Stardust +[5,07], {00245}, Cascade +[5,08], {00552}, Eclipse +[5,09], {00847}, Prism +[5,10], {00638}, Shadow +[5,11], {00000}, UNUSED +[6,01], {00407}, Phoenix +[6,02], {00000}, UNUSED +[6,03], {00630}, Crystal +[6,04], {00375}, Spectrum +[6,05], {00000}, UNUSED +[6,06], {00690}, Beacon +[6,07], {00848}, Zephyr +[6,08], {00752}, Dynamo +[6,09], {00144}, Lunar +[6,10], {00782}, Orion +[6,11], {00000}, UNUSED +[7,01], {00172}, Zenith +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00000}, UNUSED +[7,06], {00288}, Quantum +[7,07], {00000}, UNUSED +[7,08], {00880}, Aero +[7,09], {00766}, Zephyr +[7,10], {00144}, Zenith +[7,11], {00000}, UNUSED +[8,01], {00737}, Forge +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00000}, UNUSED +[8,06], {00248}, Neptune +[8,07], {00000}, UNUSED +[8,08], {00370}, Echo +[8,09], {00000}, UNUSED +[8,10], {00768}, Velocity +[8,11], {00000}, UNUSED diff --git a/Data/manifests/69Containers.txt b/Data/manifests/69Containers.txt new file mode 100644 index 0000000..37f5560 --- /dev/null +++ b/Data/manifests/69Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00838}, Odyssey +[1,02], {00502}, Vertex +[1,03], {00443}, Matrix +[1,04], {00655}, Spectrum +[1,05], {00341}, Meteor +[1,06], {00880}, Solstice +[1,07], {00113}, Spectrum +[1,08], {00319}, Vortex +[1,09], {00809}, Arcadia +[1,10], {00301}, Aero +[1,11], {00218}, Cosmos +[2,01], {00707}, Blaze +[2,02], {00000}, UNUSED +[2,03], {00727}, Blaze +[2,04], {00356}, Halo +[2,05], {00575}, Blaze +[2,06], {00236}, Beacon +[2,07], {00708}, Cyclone +[2,08], {00938}, Gravity +[2,09], {00715}, Comet +[2,10], {00999}, Nexus +[2,11], {00389}, Tectonic +[3,01], {00333}, Axis +[3,02], {00000}, UNUSED +[3,03], {00217}, Halo +[3,04], {00148}, Matrix +[3,05], {00236}, Forge +[3,06], {00581}, Halo +[3,07], {00846}, Glider +[3,08], {00832}, Radiance +[3,09], {00131}, Tesla +[3,10], {00444}, Spectrum +[3,11], {00550}, Zenith +[4,01], {00413}, Twilight +[4,02], {00000}, UNUSED +[4,03], {00638}, Crystal +[4,04], {00326}, Eclipse +[4,05], {00568}, Drift +[4,06], {00290}, Zenith +[4,07], {00247}, Ember +[4,08], {00214}, Zephyr +[4,09], {00409}, Lunar +[4,10], {00663}, Stardust +[4,11], {00638}, Nova +[5,01], {00365}, Everest +[5,02], {00000}, UNUSED +[5,03], {00230}, Echo +[5,04], {00432}, Velocity +[5,05], {00181}, Quantum +[5,06], {00184}, Circuit +[5,07], {00972}, Odyssey +[5,08], {00572}, Vertex +[5,09], {00460}, Horizon +[5,10], {00630}, Spectrum +[5,11], {00000}, UNUSED +[6,01], {00402}, Cyclone +[6,02], {00000}, UNUSED +[6,03], {00657}, Zenith +[6,04], {00329}, Zenith +[6,05], {00342}, Lunar +[6,06], {00993}, Cosmos +[6,07], {00849}, Glider +[6,08], {00538}, Inferno +[6,09], {00491}, Echo +[6,10], {00818}, Lunar +[6,11], {00000}, UNUSED +[7,01], {00809}, Velocity +[7,02], {00000}, UNUSED +[7,03], {00999}, Dynamo +[7,04], {00794}, Vertex +[7,05], {00660}, Singularity +[7,06], {00000}, UNUSED +[7,07], {00976}, Dynamo +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00107}, Horizon +[7,11], {00000}, UNUSED +[8,01], {00351}, Odyssey +[8,02], {00000}, UNUSED +[8,03], {00133}, Everest +[8,04], {00371}, Nova +[8,05], {00000}, UNUSED +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00525}, Atlas +[8,11], {00000}, UNUSED diff --git a/Data/manifests/70Containers.txt b/Data/manifests/70Containers.txt new file mode 100644 index 0000000..10b7e02 --- /dev/null +++ b/Data/manifests/70Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00447}, Matrix +[1,02], {00791}, Radiance +[1,03], {00547}, Eclipse +[1,04], {00415}, Voyager +[1,05], {00670}, Gravity +[1,06], {00857}, Zenith +[1,07], {00871}, Radiance +[1,08], {00986}, Zephyr +[1,09], {00708}, Matrix +[1,10], {00323}, Halo +[1,11], {00397}, Forge +[2,01], {00841}, Sol +[2,02], {00888}, Blaze +[2,03], {00413}, Echo +[2,04], {00108}, Circuit +[2,05], {00868}, Lunar +[2,06], {00838}, Tesla +[2,07], {00492}, Titan +[2,08], {00594}, Inferno +[2,09], {00144}, Glider +[2,10], {00588}, Zephyr +[2,11], {00907}, Ember +[3,01], {00207}, Arcadia +[3,02], {00470}, Singularity +[3,03], {00375}, Stardust +[3,04], {00473}, Echo +[3,05], {00787}, Shard +[3,06], {00756}, Cosmos +[3,07], {00519}, Matrix +[3,08], {00460}, Spectrum +[3,09], {00358}, Eclipse +[3,10], {00608}, Quantum +[3,11], {00741}, Spectrum +[4,01], {00179}, Apollo +[4,02], {00217}, Orion +[4,03], {00802}, Titan +[4,04], {00831}, Twilight +[4,05], {00472}, Dynamo +[4,06], {00841}, Nexus +[4,07], {00191}, Zenith +[4,08], {00995}, Tectonic +[4,09], {00229}, Aurora +[4,10], {00245}, Velocity +[4,11], {00340}, Twilight +[5,01], {00523}, Gravity +[5,02], {00000}, UNUSED +[5,03], {00169}, Everest +[5,04], {00858}, Echo +[5,05], {00854}, Quantum +[5,06], {00381}, Radiance +[5,07], {00000}, UNUSED +[5,08], {00946}, Horizon +[5,09], {00307}, Radiance +[5,10], {00710}, Forge +[5,11], {00978}, Prism +[6,01], {00577}, Phoenix +[6,02], {00000}, UNUSED +[6,03], {00201}, Apollo +[6,04], {00879}, Axis +[6,05], {00235}, Quantum +[6,06], {00713}, Vertex +[6,07], {00000}, UNUSED +[6,08], {00577}, Drift +[6,09], {00000}, UNUSED +[6,10], {00000}, UNUSED +[6,11], {00169}, Glacier +[7,01], {00564}, Tesla +[7,02], {00000}, UNUSED +[7,03], {00518}, Forge +[7,04], {00000}, UNUSED +[7,05], {00535}, Aurora +[7,06], {00931}, Borealis +[7,07], {00000}, UNUSED +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00000}, UNUSED +[7,11], {00520}, Polaris +[8,01], {00876}, Glider +[8,02], {00000}, UNUSED +[8,03], {00645}, Titan +[8,04], {00000}, UNUSED +[8,05], {00502}, Solstice +[8,06], {00379}, Dynamo +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00125}, Horizon diff --git a/Data/manifests/71Containers.txt b/Data/manifests/71Containers.txt new file mode 100644 index 0000000..ba6f8cf --- /dev/null +++ b/Data/manifests/71Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00804}, Everest +[1,02], {00100}, Singularity +[1,03], {00669}, Halo +[1,04], {00391}, Halo +[1,05], {00888}, Phoenix +[1,06], {00527}, Spectrum +[1,07], {00989}, Apollo +[1,08], {00996}, Solstice +[1,09], {00799}, Forge +[1,10], {00578}, Glider +[1,11], {00703}, Zenith +[2,01], {00726}, Drift +[2,02], {00449}, Atlas +[2,03], {00197}, Cosmos +[2,04], {00203}, Twilight +[2,05], {00789}, Horizon +[2,06], {00222}, Dynamo +[2,07], {00599}, Shard +[2,08], {00764}, Tectonic +[2,09], {00813}, Polaris +[2,10], {00315}, Prism +[2,11], {00502}, Halo +[3,01], {00478}, Lunar +[3,02], {00616}, Atlas +[3,03], {00329}, Spectrum +[3,04], {00845}, Circuit +[3,05], {00735}, Drift +[3,06], {00873}, Drift +[3,07], {00774}, Tectonic +[3,08], {00373}, Zenith +[3,09], {00228}, Glacier +[3,10], {00733}, Halo +[3,11], {00000}, UNUSED +[4,01], {00291}, Twilight +[4,02], {00630}, Beacon +[4,03], {00997}, Vertex +[4,04], {00844}, Shadow +[4,05], {00119}, Spectrum +[4,06], {00451}, Borealis +[4,07], {00310}, Axis +[4,08], {00726}, Aurora +[4,09], {00294}, Arcadia +[4,10], {00354}, Everest +[4,11], {00000}, UNUSED +[5,01], {00592}, Beacon +[5,02], {00317}, Nexus +[5,03], {00208}, Singularity +[5,04], {00750}, Shadow +[5,05], {00207}, Nexus +[5,06], {00663}, Drift +[5,07], {00996}, Lunar +[5,08], {00191}, Horizon +[5,09], {00803}, Shadow +[5,10], {00588}, Singularity +[5,11], {00000}, UNUSED +[6,01], {00555}, Zenith +[6,02], {00781}, Blaze +[6,03], {00211}, Zenith +[6,04], {00699}, Aero +[6,05], {00211}, Cosmos +[6,06], {00675}, Prism +[6,07], {00632}, Dynamo +[6,08], {00000}, UNUSED +[6,09], {00000}, UNUSED +[6,10], {00288}, Prism +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00917}, Solstice +[7,03], {00946}, Twilight +[7,04], {00232}, Meteor +[7,05], {00875}, Eclipse +[7,06], {00000}, UNUSED +[7,07], {00925}, Cosmos +[7,08], {00000}, UNUSED +[7,09], {00000}, UNUSED +[7,10], {00642}, Cosmos +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00671}, Aurora +[8,03], {00000}, UNUSED +[8,04], {00378}, Spectrum +[8,05], {00973}, Eclipse +[8,06], {00000}, UNUSED +[8,07], {00547}, Ember +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00369}, Meteor +[8,11], {00000}, UNUSED diff --git a/Data/manifests/72Containers.txt b/Data/manifests/72Containers.txt new file mode 100644 index 0000000..54ca3ab --- /dev/null +++ b/Data/manifests/72Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00981}, Odyssey +[1,02], {00639}, Comet +[1,03], {00643}, Forge +[1,04], {00568}, Vertex +[1,05], {00101}, Orion +[1,06], {00188}, Everest +[1,07], {00505}, Prism +[1,08], {00352}, Crystal +[1,09], {00796}, Glider +[1,10], {00503}, Sol +[1,11], {00683}, Nova +[2,01], {00874}, Horizon +[2,02], {00758}, Atlas +[2,03], {00870}, Aero +[2,04], {00580}, Zenith +[2,05], {00618}, Cyclone +[2,06], {00549}, Ember +[2,07], {00869}, Matrix +[2,08], {00778}, Horizon +[2,09], {00355}, Tectonic +[2,10], {00485}, Zenith +[2,11], {00371}, Odyssey +[3,01], {00797}, Matrix +[3,02], {00268}, Voyager +[3,03], {00566}, Shadow +[3,04], {00191}, Solstice +[3,05], {00558}, Shard +[3,06], {00243}, Eclipse +[3,07], {00544}, Velocity +[3,08], {00000}, UNUSED +[3,09], {00654}, Twilight +[3,10], {00607}, Spectrum +[3,11], {00309}, Orion +[4,01], {00679}, Infinity +[4,02], {00000}, UNUSED +[4,03], {00323}, Odyssey +[4,04], {00867}, Meteor +[4,05], {00775}, Prism +[4,06], {00845}, Arcadia +[4,07], {00253}, Spectrum +[4,08], {00000}, UNUSED +[4,09], {00324}, Aero +[4,10], {00761}, Radiance +[4,11], {00554}, Gravity +[5,01], {00548}, Voyager +[5,02], {00000}, UNUSED +[5,03], {00607}, Odyssey +[5,04], {00431}, Spectrum +[5,05], {00382}, Tesla +[5,06], {00213}, Forge +[5,07], {00435}, Atlas +[5,08], {00000}, UNUSED +[5,09], {00657}, Voyager +[5,10], {00533}, Dynamo +[5,11], {00460}, Everest +[6,01], {00278}, Zephyr +[6,02], {00000}, UNUSED +[6,03], {00921}, Axis +[6,04], {00000}, UNUSED +[6,05], {00471}, Tectonic +[6,06], {00303}, Ember +[6,07], {00930}, Neptune +[6,08], {00000}, UNUSED +[6,09], {00533}, Prism +[6,10], {00200}, Spectrum +[6,11], {00479}, Spectrum +[7,01], {00825}, Inferno +[7,02], {00000}, UNUSED +[7,03], {00479}, Phoenix +[7,04], {00000}, UNUSED +[7,05], {00520}, Voyager +[7,06], {00454}, Cascade +[7,07], {00403}, Zenith +[7,08], {00000}, UNUSED +[7,09], {00558}, Phoenix +[7,10], {00137}, Solstice +[7,11], {00669}, Eclipse +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00542}, Nimbus +[8,06], {00906}, Echo +[8,07], {00339}, Shadow +[8,08], {00000}, UNUSED +[8,09], {00478}, Titan +[8,10], {00376}, Velocity +[8,11], {00515}, Aurora diff --git a/Data/manifests/73Containers.txt b/Data/manifests/73Containers.txt new file mode 100644 index 0000000..63522af --- /dev/null +++ b/Data/manifests/73Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00848}, Titan +[1,02], {00876}, Zenith +[1,03], {00483}, Dynamo +[1,04], {00168}, Blaze +[1,05], {00298}, Circuit +[1,06], {00335}, Dynamo +[1,07], {00325}, Zenith +[1,08], {00629}, Zenith +[1,09], {00414}, Eclipse +[1,10], {00927}, Atlas +[1,11], {00544}, Forge +[2,01], {00397}, Ember +[2,02], {00628}, Lunar +[2,03], {00574}, Forge +[2,04], {00549}, Everest +[2,05], {00883}, Voyager +[2,06], {00222}, Echo +[2,07], {00366}, Drift +[2,08], {00629}, Titan +[2,09], {00317}, Voyager +[2,10], {00532}, Spectrum +[2,11], {00796}, Aero +[3,01], {00299}, Halo +[3,02], {00933}, Voyager +[3,03], {00457}, Sol +[3,04], {00933}, Crystal +[3,05], {00149}, Orion +[3,06], {00596}, Tesla +[3,07], {00395}, Halo +[3,08], {00282}, Velocity +[3,09], {00878}, Circuit +[3,10], {00974}, Blaze +[3,11], {00662}, Aero +[4,01], {01000}, Orion +[4,02], {00347}, Orion +[4,03], {00876}, Arcadia +[4,04], {00230}, Zephyr +[4,05], {00658}, Beacon +[4,06], {00607}, Inferno +[4,07], {00470}, Atlas +[4,08], {00674}, Borealis +[4,09], {00545}, Zenith +[4,10], {00215}, Forge +[4,11], {00243}, Crystal +[5,01], {00713}, Twilight +[5,02], {00771}, Lunar +[5,03], {00000}, UNUSED +[5,04], {00000}, UNUSED +[5,05], {00384}, Lunar +[5,06], {00916}, Singularity +[5,07], {00207}, Spectrum +[5,08], {00173}, Apollo +[5,09], {00817}, Borealis +[5,10], {00502}, Velocity +[5,11], {00868}, Halo +[6,01], {00000}, UNUSED +[6,02], {00313}, Forge +[6,03], {00000}, UNUSED +[6,04], {00000}, UNUSED +[6,05], {00892}, Aero +[6,06], {00000}, UNUSED +[6,07], {00266}, Singularity +[6,08], {00496}, Nexus +[6,09], {00370}, Dynamo +[6,10], {00693}, Dynamo +[6,11], {00428}, Tesla +[7,01], {00000}, UNUSED +[7,02], {00124}, Gravity +[7,03], {00000}, UNUSED +[7,04], {00000}, UNUSED +[7,05], {00128}, Eclipse +[7,06], {00000}, UNUSED +[7,07], {00986}, Dynamo +[7,08], {00638}, Echo +[7,09], {00377}, Echo +[7,10], {00622}, Tectonic +[7,11], {00759}, Eclipse +[8,01], {00000}, UNUSED +[8,02], {00232}, Glider +[8,03], {00000}, UNUSED +[8,04], {00000}, UNUSED +[8,05], {00993}, Aero +[8,06], {00000}, UNUSED +[8,07], {00879}, Orion +[8,08], {00000}, UNUSED +[8,09], {00605}, Prism +[8,10], {00767}, Solstice +[8,11], {00411}, Neptune diff --git a/Data/manifests/74Containers.txt b/Data/manifests/74Containers.txt new file mode 100644 index 0000000..f2b42f0 --- /dev/null +++ b/Data/manifests/74Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00832}, Velocity +[1,02], {00956}, Titan +[1,03], {00523}, Horizon +[1,04], {00974}, Crystal +[1,05], {00668}, Forge +[1,06], {00922}, Meteor +[1,07], {00604}, Drift +[1,08], {00988}, Eclipse +[1,09], {00482}, Cascade +[1,10], {00632}, Cyclone +[1,11], {00844}, Drift +[2,01], {00884}, Twilight +[2,02], {00706}, Comet +[2,03], {00292}, Shard +[2,04], {00897}, Horizon +[2,05], {00246}, Circuit +[2,06], {00867}, Vertex +[2,07], {00210}, Dynamo +[2,08], {00303}, Zephyr +[2,09], {00665}, Cosmos +[2,10], {00166}, Velocity +[2,11], {00320}, Prism +[3,01], {00819}, Neptune +[3,02], {00897}, Lunar +[3,03], {00743}, Nova +[3,04], {00302}, Vortex +[3,05], {00799}, Nova +[3,06], {00663}, Shadow +[3,07], {00429}, Forge +[3,08], {00939}, Odyssey +[3,09], {00124}, Comet +[3,10], {00478}, Axis +[3,11], {00880}, Stardust +[4,01], {00662}, Solstice +[4,02], {00346}, Spectrum +[4,03], {00430}, Gravity +[4,04], {00850}, Glider +[4,05], {00231}, Glacier +[4,06], {00919}, Lunar +[4,07], {00491}, Quantum +[4,08], {00465}, Atlas +[4,09], {00938}, Atlas +[4,10], {00337}, Radiance +[4,11], {00000}, UNUSED +[5,01], {00791}, Nova +[5,02], {00329}, Zenith +[5,03], {00392}, Neptune +[5,04], {00306}, Aero +[5,05], {00687}, Forge +[5,06], {00998}, Odyssey +[5,07], {00431}, Everest +[5,08], {00000}, UNUSED +[5,09], {00316}, Vortex +[5,10], {00573}, Glacier +[5,11], {00000}, UNUSED +[6,01], {00000}, UNUSED +[6,02], {00896}, Echo +[6,03], {00124}, Nova +[6,04], {00201}, Vertex +[6,05], {00670}, Infinity +[6,06], {00242}, Comet +[6,07], {00453}, Nexus +[6,08], {00000}, UNUSED +[6,09], {00675}, Cyclone +[6,10], {00938}, Matrix +[6,11], {00000}, UNUSED +[7,01], {00000}, UNUSED +[7,02], {00535}, Forge +[7,03], {00955}, Circuit +[7,04], {00243}, Singularity +[7,05], {00177}, Spectrum +[7,06], {00304}, Drift +[7,07], {00690}, Infinity +[7,08], {00000}, UNUSED +[7,09], {00758}, Velocity +[7,10], {00542}, Twilight +[7,11], {00000}, UNUSED +[8,01], {00000}, UNUSED +[8,02], {00473}, Twilight +[8,03], {00343}, Cosmos +[8,04], {00807}, Echo +[8,05], {00000}, UNUSED +[8,06], {00812}, Spectrum +[8,07], {00773}, Spectrum +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00854}, Nexus +[8,11], {00000}, UNUSED diff --git a/Data/manifests/75Containers.txt b/Data/manifests/75Containers.txt new file mode 100644 index 0000000..5963fde --- /dev/null +++ b/Data/manifests/75Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00213}, Echo +[1,02], {00966}, Inferno +[1,03], {00605}, Zenith +[1,04], {00110}, Spectrum +[1,05], {00102}, Mirage +[1,06], {00671}, Circuit +[1,07], {00249}, Twilight +[1,08], {00358}, Axis +[1,09], {00261}, Sol +[1,10], {00934}, Orion +[1,11], {00626}, Solstice +[2,01], {00505}, Voyager +[2,02], {00798}, Sol +[2,03], {00608}, Axis +[2,04], {00908}, Titan +[2,05], {00651}, Odyssey +[2,06], {00439}, Blaze +[2,07], {00807}, Polaris +[2,08], {00357}, Tesla +[2,09], {00288}, Meteor +[2,10], {00846}, Drift +[2,11], {00820}, Borealis +[3,01], {00241}, Singularity +[3,02], {00444}, Zenith +[3,03], {00182}, Cosmos +[3,04], {00501}, Vortex +[3,05], {00301}, Echo +[3,06], {00928}, Orion +[3,07], {00397}, Horizon +[3,08], {00129}, Neptune +[3,09], {00980}, Radiance +[3,10], {00960}, Infinity +[3,11], {00530}, Dynamo +[4,01], {00994}, Solstice +[4,02], {00271}, Polaris +[4,03], {00816}, Vortex +[4,04], {00469}, Velocity +[4,05], {00172}, Gravity +[4,06], {00881}, Orion +[4,07], {00207}, Cyclone +[4,08], {00184}, Infinity +[4,09], {00597}, Atlas +[4,10], {00618}, Velocity +[4,11], {00533}, Cosmos +[5,01], {00587}, Polaris +[5,02], {00740}, Radiance +[5,03], {00910}, Stardust +[5,04], {00573}, Echo +[5,05], {00579}, Vortex +[5,06], {00000}, UNUSED +[5,07], {00533}, Cascade +[5,08], {00270}, Forge +[5,09], {00000}, UNUSED +[5,10], {00890}, Titan +[5,11], {00926}, Lunar +[6,01], {00184}, Nexus +[6,02], {00674}, Singularity +[6,03], {00704}, Crystal +[6,04], {00416}, Glacier +[6,05], {00702}, Eclipse +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00581}, Spectrum +[6,09], {00000}, UNUSED +[6,10], {00895}, Mirage +[6,11], {00381}, Aero +[7,01], {00422}, Everest +[7,02], {00913}, Cyclone +[7,03], {00000}, UNUSED +[7,04], {00578}, Ember +[7,05], {00364}, Drift +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00888}, Arcadia +[7,09], {00000}, UNUSED +[7,10], {00678}, Spectrum +[7,11], {00706}, Gravity +[8,01], {00573}, Crystal +[8,02], {00238}, Everest +[8,03], {00000}, UNUSED +[8,04], {00170}, Horizon +[8,05], {00231}, Axis +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00139}, Vertex +[8,09], {00000}, UNUSED +[8,10], {00611}, Nimbus +[8,11], {00565}, Velocity diff --git a/Data/manifests/76Containers.txt b/Data/manifests/76Containers.txt new file mode 100644 index 0000000..1273c24 --- /dev/null +++ b/Data/manifests/76Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00775}, Circuit +[1,02], {00139}, Polaris +[1,03], {00287}, Vortex +[1,04], {00344}, Axis +[1,05], {00850}, Velocity +[1,06], {00977}, Radiance +[1,07], {00951}, Mirage +[1,08], {00532}, Solstice +[1,09], {00653}, Borealis +[1,10], {00600}, Phoenix +[1,11], {00490}, Cyclone +[2,01], {00976}, Mirage +[2,02], {00777}, Vertex +[2,03], {00660}, Odyssey +[2,04], {00816}, Vertex +[2,05], {00830}, Orion +[2,06], {00999}, Arcadia +[2,07], {00778}, Phoenix +[2,08], {00751}, Singularity +[2,09], {00133}, Solstice +[2,10], {00395}, Aurora +[2,11], {00167}, Spectrum +[3,01], {00505}, Infinity +[3,02], {00488}, Nimbus +[3,03], {00514}, Arcadia +[3,04], {00634}, Orion +[3,05], {00899}, Shadow +[3,06], {00872}, Comet +[3,07], {00792}, Twilight +[3,08], {00980}, Polaris +[3,09], {00477}, Cascade +[3,10], {00187}, Everest +[3,11], {00967}, Glider +[4,01], {00000}, UNUSED +[4,02], {00446}, Neptune +[4,03], {00993}, Matrix +[4,04], {00568}, Ember +[4,05], {00977}, Nova +[4,06], {00307}, Echo +[4,07], {00980}, Twilight +[4,08], {00912}, Borealis +[4,09], {00237}, Velocity +[4,10], {00920}, Titan +[4,11], {00540}, Tesla +[5,01], {00000}, UNUSED +[5,02], {00861}, Mirage +[5,03], {00663}, Beacon +[5,04], {00957}, Velocity +[5,05], {00420}, Cascade +[5,06], {00922}, Spectrum +[5,07], {00789}, Echo +[5,08], {00481}, Borealis +[5,09], {00923}, Cascade +[5,10], {00319}, Aurora +[5,11], {00850}, Zenith +[6,01], {00000}, UNUSED +[6,02], {00307}, Titan +[6,03], {00725}, Cyclone +[6,04], {00638}, Lunar +[6,05], {00396}, Nexus +[6,06], {00203}, Voyager +[6,07], {00654}, Singularity +[6,08], {00160}, Comet +[6,09], {00214}, Zenith +[6,10], {00369}, Borealis +[6,11], {00885}, Halo +[7,01], {00000}, UNUSED +[7,02], {00258}, Velocity +[7,03], {00784}, Nimbus +[7,04], {00836}, Tesla +[7,05], {00923}, Nimbus +[7,06], {00621}, Beacon +[7,07], {00000}, UNUSED +[7,08], {00412}, Phoenix +[7,09], {00197}, Everest +[7,10], {00867}, Shadow +[7,11], {00509}, Neptune +[8,01], {00000}, UNUSED +[8,02], {00000}, UNUSED +[8,03], {00233}, Tesla +[8,04], {00000}, UNUSED +[8,05], {00749}, Cosmos +[8,06], {00491}, Comet +[8,07], {00000}, UNUSED +[8,08], {00301}, Cascade +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00000}, UNUSED diff --git a/Data/manifests/77Containers.txt b/Data/manifests/77Containers.txt new file mode 100644 index 0000000..5b5bad5 --- /dev/null +++ b/Data/manifests/77Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00248}, Quantum +[1,02], {00875}, Titan +[1,03], {00827}, Vortex +[1,04], {00242}, Quantum +[1,05], {00822}, Vortex +[1,06], {00508}, Dynamo +[1,07], {00622}, Spectrum +[1,08], {00427}, Mirage +[1,09], {00668}, Radiance +[1,10], {00603}, Meteor +[1,11], {00663}, Comet +[2,01], {00105}, Zenith +[2,02], {00977}, Spectrum +[2,03], {00533}, Horizon +[2,04], {00791}, Arcadia +[2,05], {00829}, Voyager +[2,06], {00203}, Shard +[2,07], {00678}, Gravity +[2,08], {00345}, Echo +[2,09], {00862}, Tectonic +[2,10], {00211}, Shadow +[2,11], {00181}, Prism +[3,01], {00464}, Odyssey +[3,02], {00967}, Vertex +[3,03], {00428}, Solstice +[3,04], {00923}, Circuit +[3,05], {00445}, Nimbus +[3,06], {00636}, Borealis +[3,07], {00203}, Spectrum +[3,08], {00410}, Horizon +[3,09], {00728}, Drift +[3,10], {00610}, Velocity +[3,11], {00832}, Meteor +[4,01], {00908}, Horizon +[4,02], {00000}, UNUSED +[4,03], {00561}, Lunar +[4,04], {00170}, Glider +[4,05], {00506}, Velocity +[4,06], {00142}, Drift +[4,07], {00961}, Cosmos +[4,08], {00370}, Nimbus +[4,09], {00562}, Circuit +[4,10], {00759}, Zephyr +[4,11], {00206}, Zenith +[5,01], {00124}, Velocity +[5,02], {00000}, UNUSED +[5,03], {00315}, Spectrum +[5,04], {00719}, Apollo +[5,05], {00120}, Zenith +[5,06], {00272}, Aero +[5,07], {00986}, Mirage +[5,08], {00511}, Meteor +[5,09], {00910}, Shadow +[5,10], {00158}, Odyssey +[5,11], {00898}, Dynamo +[6,01], {00858}, Tectonic +[6,02], {00000}, UNUSED +[6,03], {00803}, Glacier +[6,04], {00406}, Infinity +[6,05], {00000}, UNUSED +[6,06], {00416}, Horizon +[6,07], {00570}, Tectonic +[6,08], {00937}, Velocity +[6,09], {00828}, Horizon +[6,10], {00620}, Blaze +[6,11], {00370}, Horizon +[7,01], {00953}, Odyssey +[7,02], {00000}, UNUSED +[7,03], {00731}, Zenith +[7,04], {00890}, Meteor +[7,05], {00000}, UNUSED +[7,06], {00965}, Cascade +[7,07], {00000}, UNUSED +[7,08], {00767}, Halo +[7,09], {00231}, Cosmos +[7,10], {00310}, Tesla +[7,11], {00384}, Circuit +[8,01], {00302}, Horizon +[8,02], {00000}, UNUSED +[8,03], {00700}, Shard +[8,04], {00317}, Vertex +[8,05], {00000}, UNUSED +[8,06], {00283}, Twilight +[8,07], {00000}, UNUSED +[8,08], {00847}, Echo +[8,09], {00129}, Atlas +[8,10], {00000}, UNUSED +[8,11], {00594}, Eclipse diff --git a/Data/manifests/78Containers.txt b/Data/manifests/78Containers.txt new file mode 100644 index 0000000..43d931a --- /dev/null +++ b/Data/manifests/78Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00341}, Axis +[1,02], {00402}, Titan +[1,03], {00436}, Solstice +[1,04], {00552}, Blaze +[1,05], {00828}, Phoenix +[1,06], {00371}, Quantum +[1,07], {00827}, Zenith +[1,08], {00779}, Twilight +[1,09], {00692}, Glider +[1,10], {00531}, Odyssey +[1,11], {00973}, Nova +[2,01], {00924}, Aero +[2,02], {00475}, Sol +[2,03], {00463}, Polaris +[2,04], {00499}, Singularity +[2,05], {00281}, Glider +[2,06], {00304}, Inferno +[2,07], {00329}, Ember +[2,08], {00310}, Vertex +[2,09], {00842}, Prism +[2,10], {00541}, Comet +[2,11], {00927}, Quantum +[3,01], {00468}, Sol +[3,02], {00415}, Orion +[3,03], {00357}, Zenith +[3,04], {00545}, Prism +[3,05], {00248}, Cyclone +[3,06], {00208}, Zephyr +[3,07], {00625}, Everest +[3,08], {00484}, Eclipse +[3,09], {00867}, Inferno +[3,10], {00894}, Eclipse +[3,11], {00864}, Zenith +[4,01], {00603}, Circuit +[4,02], {00270}, Beacon +[4,03], {00661}, Halo +[4,04], {00161}, Lunar +[4,05], {00857}, Echo +[4,06], {00118}, Horizon +[4,07], {00622}, Tectonic +[4,08], {00183}, Halo +[4,09], {00908}, Drift +[4,10], {00934}, Sol +[4,11], {00734}, Drift +[5,01], {00437}, Gravity +[5,02], {00221}, Shadow +[5,03], {00899}, Quantum +[5,04], {00717}, Vertex +[5,05], {00843}, Horizon +[5,06], {00994}, Crystal +[5,07], {00000}, UNUSED +[5,08], {00221}, Lunar +[5,09], {00438}, Cascade +[5,10], {00695}, Circuit +[5,11], {00580}, Vortex +[6,01], {00727}, Forge +[6,02], {00755}, Everest +[6,03], {00000}, UNUSED +[6,04], {00547}, Zephyr +[6,05], {00173}, Gravity +[6,06], {00000}, UNUSED +[6,07], {00000}, UNUSED +[6,08], {00736}, Stardust +[6,09], {00861}, Forge +[6,10], {00341}, Aurora +[6,11], {00758}, Vortex +[7,01], {00186}, Eclipse +[7,02], {00147}, Spectrum +[7,03], {00000}, UNUSED +[7,04], {00918}, Zenith +[7,05], {00422}, Vertex +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00819}, Lunar +[7,09], {00385}, Infinity +[7,10], {00410}, Velocity +[7,11], {00581}, Solstice +[8,01], {00463}, Meteor +[8,02], {00331}, Zenith +[8,03], {00000}, UNUSED +[8,04], {00648}, Phoenix +[8,05], {00673}, Everest +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00577}, Matrix +[8,09], {00519}, Nexus +[8,10], {00790}, Drift +[8,11], {00574}, Glacier diff --git a/Data/manifests/79Containers.txt b/Data/manifests/79Containers.txt new file mode 100644 index 0000000..65b4d03 --- /dev/null +++ b/Data/manifests/79Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00216}, Echo +[1,02], {00601}, Horizon +[1,03], {00629}, Twilight +[1,04], {00351}, Everest +[1,05], {00990}, Vortex +[1,06], {00499}, Nexus +[1,07], {00496}, Sol +[1,08], {00368}, Shard +[1,09], {00694}, Blaze +[1,10], {00667}, Atlas +[1,11], {00946}, Dynamo +[2,01], {00121}, Gravity +[2,02], {00348}, Velocity +[2,03], {00721}, Glider +[2,04], {00254}, Phoenix +[2,05], {00905}, Zenith +[2,06], {00483}, Stardust +[2,07], {00884}, Forge +[2,08], {00504}, Drift +[2,09], {00638}, Glider +[2,10], {00165}, Voyager +[2,11], {00878}, Beacon +[3,01], {00635}, Phoenix +[3,02], {00951}, Halo +[3,03], {00429}, Singularity +[3,04], {00802}, Orion +[3,05], {00874}, Matrix +[3,06], {00219}, Zenith +[3,07], {00528}, Polaris +[3,08], {00917}, Arcadia +[3,09], {00912}, Aero +[3,10], {00170}, Cyclone +[3,11], {00978}, Glider +[4,01], {00893}, Inferno +[4,02], {00790}, Nexus +[4,03], {00883}, Eclipse +[4,04], {00129}, Zenith +[4,05], {00748}, Vertex +[4,06], {00995}, Cyclone +[4,07], {00877}, Lunar +[4,08], {00310}, Odyssey +[4,09], {00997}, Glacier +[4,10], {00608}, Aurora +[4,11], {00822}, Quantum +[5,01], {00210}, Echo +[5,02], {00319}, Everest +[5,03], {00930}, Sol +[5,04], {00506}, Shadow +[5,05], {00674}, Vertex +[5,06], {00341}, Cyclone +[5,07], {00403}, Crystal +[5,08], {00618}, Zenith +[5,09], {00853}, Neptune +[5,10], {00537}, Neptune +[5,11], {00407}, Velocity +[6,01], {00390}, Cyclone +[6,02], {00473}, Orion +[6,03], {00350}, Axis +[6,04], {00267}, Aero +[6,05], {00802}, Meteor +[6,06], {00838}, Halo +[6,07], {00951}, Beacon +[6,08], {00000}, UNUSED +[6,09], {00473}, Glider +[6,10], {00000}, UNUSED +[6,11], {00813}, Matrix +[7,01], {00336}, Eclipse +[7,02], {00000}, UNUSED +[7,03], {00547}, Stardust +[7,04], {00711}, Arcadia +[7,05], {00282}, Eclipse +[7,06], {00854}, Echo +[7,07], {00457}, Glider +[7,08], {00000}, UNUSED +[7,09], {00591}, Sol +[7,10], {00000}, UNUSED +[7,11], {00389}, Circuit +[8,01], {00352}, Aero +[8,02], {00000}, UNUSED +[8,03], {00261}, Voyager +[8,04], {00829}, Nova +[8,05], {00167}, Blaze +[8,06], {00830}, Nexus +[8,07], {00199}, Nova +[8,08], {00000}, UNUSED +[8,09], {00000}, UNUSED +[8,10], {00000}, UNUSED +[8,11], {00184}, Aero diff --git a/Data/manifests/80Containers.txt b/Data/manifests/80Containers.txt new file mode 100644 index 0000000..bcbec4b --- /dev/null +++ b/Data/manifests/80Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00953}, Spectrum +[1,02], {00137}, Nimbus +[1,03], {00137}, Phoenix +[1,04], {00942}, Quantum +[1,05], {00370}, Phoenix +[1,06], {00877}, Zephyr +[1,07], {00499}, Polaris +[1,08], {00666}, Borealis +[1,09], {00824}, Zenith +[1,10], {00573}, Radiance +[1,11], {00304}, Phoenix +[2,01], {00369}, Horizon +[2,02], {00487}, Nova +[2,03], {00874}, Aurora +[2,04], {00859}, Inferno +[2,05], {00775}, Zenith +[2,06], {00594}, Dynamo +[2,07], {00732}, Beacon +[2,08], {00759}, Orion +[2,09], {00504}, Solstice +[2,10], {00662}, Glider +[2,11], {00301}, Inferno +[3,01], {00626}, Prism +[3,02], {00685}, Polaris +[3,03], {00829}, Cyclone +[3,04], {00845}, Orion +[3,05], {00484}, Blaze +[3,06], {00244}, Horizon +[3,07], {00939}, Spectrum +[3,08], {00738}, Vortex +[3,09], {00857}, Velocity +[3,10], {00770}, Borealis +[3,11], {00368}, Comet +[4,01], {00921}, Drift +[4,02], {00974}, Aurora +[4,03], {00118}, Echo +[4,04], {00721}, Eclipse +[4,05], {00672}, Inferno +[4,06], {00522}, Matrix +[4,07], {00534}, Zenith +[4,08], {00873}, Stardust +[4,09], {00634}, Nexus +[4,10], {00634}, Echo +[4,11], {00244}, Vertex +[5,01], {00153}, Twilight +[5,02], {00609}, Arcadia +[5,03], {00504}, Radiance +[5,04], {00836}, Halo +[5,05], {00751}, Borealis +[5,06], {00827}, Spectrum +[5,07], {00248}, Matrix +[5,08], {00130}, Blaze +[5,09], {00239}, Quantum +[5,10], {00472}, Polaris +[5,11], {00000}, UNUSED +[6,01], {00354}, Echo +[6,02], {00709}, Tectonic +[6,03], {00443}, Phoenix +[6,04], {00300}, Quantum +[6,05], {00366}, Quantum +[6,06], {00981}, Blaze +[6,07], {00320}, Cyclone +[6,08], {00613}, Apollo +[6,09], {00625}, Vertex +[6,10], {00995}, Radiance +[6,11], {00000}, UNUSED +[7,01], {00790}, Shadow +[7,02], {00000}, UNUSED +[7,03], {00176}, Quantum +[7,04], {00603}, Tesla +[7,05], {00000}, UNUSED +[7,06], {00992}, Comet +[7,07], {00603}, Orion +[7,08], {00432}, Drift +[7,09], {00401}, Horizon +[7,10], {00302}, Zephyr +[7,11], {00000}, UNUSED +[8,01], {00345}, Tesla +[8,02], {00000}, UNUSED +[8,03], {00152}, Shard +[8,04], {00215}, Atlas +[8,05], {00000}, UNUSED +[8,06], {00957}, Velocity +[8,07], {00421}, Odyssey +[8,08], {00921}, Arcadia +[8,09], {00894}, Odyssey +[8,10], {00484}, Velocity +[8,11], {00000}, UNUSED diff --git a/Data/manifests/81Containers.txt b/Data/manifests/81Containers.txt new file mode 100644 index 0000000..9c0b026 --- /dev/null +++ b/Data/manifests/81Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00917}, Infinity +[1,02], {00826}, Ember +[1,03], {00733}, Stardust +[1,04], {00409}, Sol +[1,05], {00962}, Apollo +[1,06], {00454}, Mirage +[1,07], {00963}, Zenith +[1,08], {00463}, Zenith +[1,09], {00518}, Blaze +[1,10], {00472}, Vortex +[1,11], {00179}, Vertex +[2,01], {00791}, Eclipse +[2,02], {00829}, Nova +[2,03], {00692}, Matrix +[2,04], {00627}, Inferno +[2,05], {00220}, Spectrum +[2,06], {00604}, Blaze +[2,07], {00921}, Circuit +[2,08], {00439}, Vertex +[2,09], {00198}, Tectonic +[2,10], {00383}, Inferno +[2,11], {00322}, Lunar +[3,01], {00180}, Cosmos +[3,02], {00665}, Vertex +[3,03], {00849}, Glacier +[3,04], {00669}, Phoenix +[3,05], {00753}, Matrix +[3,06], {00552}, Vertex +[3,07], {00893}, Twilight +[3,08], {00950}, Polaris +[3,09], {00902}, Drift +[3,10], {00560}, Zenith +[3,11], {00352}, Velocity +[4,01], {00882}, Infinity +[4,02], {00702}, Crystal +[4,03], {00689}, Circuit +[4,04], {00434}, Cascade +[4,05], {00819}, Sol +[4,06], {00554}, Vertex +[4,07], {00567}, Horizon +[4,08], {00634}, Echo +[4,09], {00390}, Nexus +[4,10], {00940}, Zenith +[4,11], {00850}, Vortex +[5,01], {00812}, Voyager +[5,02], {00215}, Tectonic +[5,03], {00637}, Orion +[5,04], {00486}, Titan +[5,05], {00134}, Zenith +[5,06], {00398}, Velocity +[5,07], {00774}, Axis +[5,08], {00307}, Horizon +[5,09], {00848}, Axis +[5,10], {00224}, Eclipse +[5,11], {00804}, Zenith +[6,01], {00000}, UNUSED +[6,02], {00897}, Vertex +[6,03], {00606}, Singularity +[6,04], {00505}, Spectrum +[6,05], {00570}, Nexus +[6,06], {00203}, Aurora +[6,07], {00321}, Aero +[6,08], {00280}, Comet +[6,09], {00270}, Eclipse +[6,10], {00784}, Crystal +[6,11], {00232}, Vertex +[7,01], {00000}, UNUSED +[7,02], {00468}, Stardust +[7,03], {00000}, UNUSED +[7,04], {00136}, Apollo +[7,05], {00414}, Sol +[7,06], {00544}, Prism +[7,07], {00443}, Vortex +[7,08], {00732}, Ember +[7,09], {00000}, UNUSED +[7,10], {00798}, Gravity +[7,11], {00909}, Infinity +[8,01], {00000}, UNUSED +[8,02], {00238}, Ember +[8,03], {00000}, UNUSED +[8,04], {00173}, Spectrum +[8,05], {00930}, Neptune +[8,06], {00267}, Matrix +[8,07], {00250}, Dynamo +[8,08], {00128}, Spectrum +[8,09], {00000}, UNUSED +[8,10], {00732}, Shard +[8,11], {00287}, Zenith diff --git a/Data/manifests/82Containers.txt b/Data/manifests/82Containers.txt new file mode 100644 index 0000000..3633a46 --- /dev/null +++ b/Data/manifests/82Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00859}, Blaze +[1,02], {00111}, Matrix +[1,03], {00745}, Glider +[1,04], {00650}, Twilight +[1,05], {00155}, Echo +[1,06], {00182}, Tectonic +[1,07], {00954}, Ember +[1,08], {00507}, Velocity +[1,09], {00582}, Horizon +[1,10], {00741}, Shard +[1,11], {00849}, Everest +[2,01], {00417}, Inferno +[2,02], {00994}, Circuit +[2,03], {00172}, Everest +[2,04], {00792}, Shadow +[2,05], {00373}, Crystal +[2,06], {00479}, Zenith +[2,07], {00416}, Zenith +[2,08], {00155}, Radiance +[2,09], {00253}, Everest +[2,10], {00930}, Prism +[2,11], {00485}, Mirage +[3,01], {00636}, Nexus +[3,02], {00296}, Spectrum +[3,03], {00552}, Ember +[3,04], {00810}, Zenith +[3,05], {00539}, Arcadia +[3,06], {00354}, Twilight +[3,07], {00864}, Spectrum +[3,08], {00538}, Quantum +[3,09], {00426}, Twilight +[3,10], {00685}, Prism +[3,11], {00424}, Titan +[4,01], {00392}, Drift +[4,02], {00772}, Cyclone +[4,03], {00870}, Blaze +[4,04], {00438}, Eclipse +[4,05], {00225}, Shadow +[4,06], {00879}, Echo +[4,07], {00456}, Velocity +[4,08], {00633}, Beacon +[4,09], {01000}, Orion +[4,10], {00288}, Infinity +[4,11], {00636}, Halo +[5,01], {00395}, Blaze +[5,02], {00403}, Mirage +[5,03], {00995}, Horizon +[5,04], {00426}, Radiance +[5,05], {00991}, Eclipse +[5,06], {00777}, Velocity +[5,07], {00202}, Circuit +[5,08], {00448}, Axis +[5,09], {00822}, Shard +[5,10], {00676}, Glider +[5,11], {00806}, Ember +[6,01], {00858}, Arcadia +[6,02], {00759}, Comet +[6,03], {00243}, Shadow +[6,04], {00611}, Nova +[6,05], {00178}, Apollo +[6,06], {00000}, UNUSED +[6,07], {00908}, Nexus +[6,08], {00670}, Meteor +[6,09], {00956}, Vortex +[6,10], {00259}, Zenith +[6,11], {00345}, Vertex +[7,01], {00228}, Eclipse +[7,02], {00693}, Phoenix +[7,03], {00226}, Infinity +[7,04], {00655}, Orion +[7,05], {00827}, Cosmos +[7,06], {00000}, UNUSED +[7,07], {00000}, UNUSED +[7,08], {00167}, Crystal +[7,09], {00246}, Drift +[7,10], {00223}, Eclipse +[7,11], {00154}, Stardust +[8,01], {00192}, Spectrum +[8,02], {00995}, Odyssey +[8,03], {00597}, Radiance +[8,04], {00654}, Lunar +[8,05], {00369}, Infinity +[8,06], {00000}, UNUSED +[8,07], {00000}, UNUSED +[8,08], {00000}, UNUSED +[8,09], {00939}, Velocity +[8,10], {00261}, Echo +[8,11], {00294}, Zephyr diff --git a/Data/manifests/83Containers.txt b/Data/manifests/83Containers.txt new file mode 100644 index 0000000..2a85473 --- /dev/null +++ b/Data/manifests/83Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00976}, Eclipse +[1,02], {00580}, Velocity +[1,03], {00134}, Blaze +[1,04], {00869}, Phoenix +[1,05], {00495}, Glider +[1,06], {00420}, Velocity +[1,07], {00795}, Horizon +[1,08], {00120}, Titan +[1,09], {00234}, Comet +[1,10], {00365}, Infinity +[1,11], {00253}, Twilight +[2,01], {00282}, Neptune +[2,02], {00720}, Glider +[2,03], {00869}, Radiance +[2,04], {00266}, Arcadia +[2,05], {00188}, Crystal +[2,06], {00722}, Velocity +[2,07], {00710}, Tesla +[2,08], {00525}, Echo +[2,09], {00756}, Titan +[2,10], {00524}, Horizon +[2,11], {00617}, Tectonic +[3,01], {00722}, Sol +[3,02], {00273}, Vertex +[3,03], {00644}, Titan +[3,04], {00808}, Shadow +[3,05], {00789}, Horizon +[3,06], {00187}, Nexus +[3,07], {00576}, Nexus +[3,08], {00763}, Everest +[3,09], {00728}, Solstice +[3,10], {00368}, Tesla +[3,11], {00397}, Apollo +[4,01], {00703}, Voyager +[4,02], {00690}, Inferno +[4,03], {00681}, Forge +[4,04], {00481}, Inferno +[4,05], {00710}, Echo +[4,06], {00643}, Voyager +[4,07], {00881}, Circuit +[4,08], {00195}, Vertex +[4,09], {00679}, Nimbus +[4,10], {00636}, Comet +[4,11], {00868}, Borealis +[5,01], {00739}, Zephyr +[5,02], {00777}, Solstice +[5,03], {00561}, Nova +[5,04], {00269}, Lunar +[5,05], {00612}, Everest +[5,06], {00324}, Prism +[5,07], {00100}, Polaris +[5,08], {00571}, Shard +[5,09], {00848}, Comet +[5,10], {00691}, Nimbus +[5,11], {00377}, Sol +[6,01], {00634}, Matrix +[6,02], {00000}, UNUSED +[6,03], {00338}, Voyager +[6,04], {00864}, Arcadia +[6,05], {00537}, Cascade +[6,06], {00459}, Aero +[6,07], {00439}, Odyssey +[6,08], {00771}, Titan +[6,09], {00152}, Borealis +[6,10], {00712}, Spectrum +[6,11], {00639}, Velocity +[7,01], {00638}, Nexus +[7,02], {00000}, UNUSED +[7,03], {00000}, UNUSED +[7,04], {00882}, Velocity +[7,05], {00289}, Axis +[7,06], {00515}, Zephyr +[7,07], {00925}, Tesla +[7,08], {00719}, Glider +[7,09], {00212}, Eclipse +[7,10], {00926}, Eclipse +[7,11], {00164}, Forge +[8,01], {00391}, Infinity +[8,02], {00000}, UNUSED +[8,03], {00000}, UNUSED +[8,04], {00617}, Infinity +[8,05], {00354}, Crystal +[8,06], {00630}, Sol +[8,07], {00232}, Mirage +[8,08], {00256}, Prism +[8,09], {00899}, Zephyr +[8,10], {00443}, Glacier +[8,11], {00710}, Nova diff --git a/Data/manifests/84Containers.txt b/Data/manifests/84Containers.txt new file mode 100644 index 0000000..3630f86 --- /dev/null +++ b/Data/manifests/84Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00611}, Ember +[1,02], {00587}, Neptune +[1,03], {00227}, Tectonic +[1,04], {00557}, Vertex +[1,05], {00463}, Apollo +[1,06], {00131}, Echo +[1,07], {00701}, Aero +[1,08], {00541}, Cyclone +[1,09], {00214}, Zenith +[1,10], {00733}, Nova +[1,11], {00465}, Sol +[2,01], {00797}, Spectrum +[2,02], {00876}, Vertex +[2,03], {00642}, Atlas +[2,04], {00168}, Prism +[2,05], {00762}, Sol +[2,06], {00787}, Twilight +[2,07], {00277}, Zephyr +[2,08], {00875}, Vortex +[2,09], {00205}, Echo +[2,10], {00989}, Everest +[2,11], {00772}, Nova +[3,01], {00197}, Singularity +[3,02], {00472}, Cascade +[3,03], {00684}, Tesla +[3,04], {00294}, Horizon +[3,05], {00443}, Zenith +[3,06], {00622}, Zephyr +[3,07], {00525}, Echo +[3,08], {00200}, Zephyr +[3,09], {00636}, Aurora +[3,10], {00482}, Arcadia +[3,11], {00486}, Eclipse +[4,01], {00181}, Cyclone +[4,02], {00610}, Phoenix +[4,03], {00871}, Axis +[4,04], {00494}, Nimbus +[4,05], {00970}, Shadow +[4,06], {00898}, Meteor +[4,07], {00432}, Prism +[4,08], {00557}, Sol +[4,09], {00113}, Horizon +[4,10], {00181}, Cyclone +[4,11], {00151}, Phoenix +[5,01], {00431}, Halo +[5,02], {00816}, Halo +[5,03], {00185}, Zephyr +[5,04], {00151}, Comet +[5,05], {00760}, Eclipse +[5,06], {00133}, Velocity +[5,07], {00545}, Glacier +[5,08], {00267}, Eclipse +[5,09], {00985}, Tectonic +[5,10], {00126}, Blaze +[5,11], {00610}, Tectonic +[6,01], {00218}, Vertex +[6,02], {00760}, Circuit +[6,03], {00267}, Apollo +[6,04], {00865}, Tesla +[6,05], {00285}, Meteor +[6,06], {00165}, Glacier +[6,07], {00289}, Dynamo +[6,08], {00284}, Eclipse +[6,09], {00739}, Everest +[6,10], {00645}, Cascade +[6,11], {00114}, Prism +[7,01], {00733}, Singularity +[7,02], {00621}, Vortex +[7,03], {00817}, Lunar +[7,04], {00799}, Zenith +[7,05], {00000}, UNUSED +[7,06], {00640}, Quantum +[7,07], {00605}, Zenith +[7,08], {00412}, Gravity +[7,09], {00859}, Cyclone +[7,10], {00222}, Lunar +[7,11], {00982}, Nimbus +[8,01], {00000}, UNUSED +[8,02], {00560}, Titan +[8,03], {00214}, Echo +[8,04], {00305}, Velocity +[8,05], {00000}, UNUSED +[8,06], {00508}, Forge +[8,07], {00485}, Axis +[8,08], {00837}, Cosmos +[8,09], {00938}, Solstice +[8,10], {00636}, Solstice +[8,11], {00000}, UNUSED diff --git a/Data/manifests/85Containers.txt b/Data/manifests/85Containers.txt new file mode 100644 index 0000000..4f68c09 --- /dev/null +++ b/Data/manifests/85Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00602}, Aurora +[1,02], {00721}, Infinity +[1,03], {00625}, Quantum +[1,04], {00287}, Glider +[1,05], {00480}, Vertex +[1,06], {00288}, Velocity +[1,07], {00356}, Crystal +[1,08], {00887}, Prism +[1,09], {00532}, Crystal +[1,10], {00909}, Mirage +[1,11], {00333}, Prism +[2,01], {00917}, Apollo +[2,02], {00294}, Zephyr +[2,03], {00228}, Dynamo +[2,04], {00571}, Neptune +[2,05], {00129}, Odyssey +[2,06], {00319}, Zenith +[2,07], {00592}, Spectrum +[2,08], {00617}, Meteor +[2,09], {00953}, Spectrum +[2,10], {00246}, Odyssey +[2,11], {00828}, Phoenix +[3,01], {00527}, Cosmos +[3,02], {00986}, Inferno +[3,03], {00889}, Nova +[3,04], {00723}, Shard +[3,05], {00405}, Borealis +[3,06], {00472}, Tectonic +[3,07], {00107}, Eclipse +[3,08], {00120}, Quantum +[3,09], {00673}, Arcadia +[3,10], {00677}, Cyclone +[3,11], {00977}, Prism +[4,01], {00434}, Circuit +[4,02], {00260}, Horizon +[4,03], {00681}, Orion +[4,04], {00601}, Cosmos +[4,05], {00426}, Horizon +[4,06], {00366}, Horizon +[4,07], {00323}, Drift +[4,08], {00893}, Infinity +[4,09], {00752}, Halo +[4,10], {00551}, Radiance +[4,11], {00409}, Echo +[5,01], {00625}, Horizon +[5,02], {01000}, Comet +[5,03], {00601}, Apollo +[5,04], {00290}, Stardust +[5,05], {00272}, Tectonic +[5,06], {00672}, Orion +[5,07], {00714}, Spectrum +[5,08], {00695}, Mirage +[5,09], {00440}, Phoenix +[5,10], {00591}, Gravity +[5,11], {00167}, Cascade +[6,01], {00716}, Crystal +[6,02], {00834}, Halo +[6,03], {00259}, Cosmos +[6,04], {00765}, Voyager +[6,05], {00833}, Orion +[6,06], {00640}, Twilight +[6,07], {00420}, Horizon +[6,08], {00581}, Matrix +[6,09], {00278}, Infinity +[6,10], {00759}, Meteor +[6,11], {00951}, Neptune +[7,01], {00279}, Beacon +[7,02], {00281}, Horizon +[7,03], {00581}, Solstice +[7,04], {00762}, Echo +[7,05], {00356}, Nexus +[7,06], {00206}, Titan +[7,07], {00925}, Vortex +[7,08], {00765}, Horizon +[7,09], {00998}, Circuit +[7,10], {00000}, UNUSED +[7,11], {00980}, Solstice +[8,01], {00452}, Arcadia +[8,02], {00299}, Zenith +[8,03], {00190}, Aero +[8,04], {00456}, Radiance +[8,05], {00631}, Eclipse +[8,06], {00254}, Aurora +[8,07], {00613}, Nova +[8,08], {00000}, UNUSED +[8,09], {00734}, Cyclone +[8,10], {00000}, UNUSED +[8,11], {00187}, Meteor diff --git a/Data/manifests/86Containers.txt b/Data/manifests/86Containers.txt new file mode 100644 index 0000000..72b8e3a --- /dev/null +++ b/Data/manifests/86Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00212}, Apollo +[1,02], {00543}, Nova +[1,03], {00664}, Forge +[1,04], {00516}, Crystal +[1,05], {00796}, Crystal +[1,06], {00592}, Eclipse +[1,07], {00603}, Voyager +[1,08], {00113}, Everest +[1,09], {00991}, Zenith +[1,10], {00583}, Everest +[1,11], {00548}, Tesla +[2,01], {00756}, Cosmos +[2,02], {00700}, Odyssey +[2,03], {00851}, Meteor +[2,04], {00241}, Echo +[2,05], {00747}, Eclipse +[2,06], {00703}, Forge +[2,07], {00835}, Matrix +[2,08], {00925}, Cascade +[2,09], {00965}, Odyssey +[2,10], {00969}, Mirage +[2,11], {00565}, Horizon +[3,01], {00985}, Cascade +[3,02], {00109}, Inferno +[3,03], {00493}, Neptune +[3,04], {00252}, Cascade +[3,05], {00734}, Quantum +[3,06], {00949}, Polaris +[3,07], {00365}, Echo +[3,08], {00114}, Blaze +[3,09], {00819}, Matrix +[3,10], {00136}, Blaze +[3,11], {00578}, Horizon +[4,01], {00614}, Drift +[4,02], {00107}, Odyssey +[4,03], {00123}, Eclipse +[4,04], {00945}, Ember +[4,05], {00543}, Vortex +[4,06], {00953}, Spectrum +[4,07], {00461}, Dynamo +[4,08], {00461}, Mirage +[4,09], {00147}, Lunar +[4,10], {00945}, Halo +[4,11], {00382}, Voyager +[5,01], {00675}, Odyssey +[5,02], {00387}, Spectrum +[5,03], {00425}, Odyssey +[5,04], {00534}, Phoenix +[5,05], {00431}, Dynamo +[5,06], {00237}, Nexus +[5,07], {00716}, Radiance +[5,08], {00423}, Meteor +[5,09], {00617}, Cascade +[5,10], {00214}, Zephyr +[5,11], {00170}, Eclipse +[6,01], {00370}, Vertex +[6,02], {00148}, Radiance +[6,03], {00720}, Singularity +[6,04], {00768}, Matrix +[6,05], {00910}, Eclipse +[6,06], {00426}, Nova +[6,07], {00602}, Shadow +[6,08], {00197}, Phoenix +[6,09], {00316}, Circuit +[6,10], {00408}, Everest +[6,11], {00544}, Eclipse +[7,01], {00783}, Shard +[7,02], {00239}, Halo +[7,03], {00000}, UNUSED +[7,04], {00472}, Solstice +[7,05], {00795}, Echo +[7,06], {00946}, Echo +[7,07], {00460}, Meteor +[7,08], {00646}, Comet +[7,09], {00258}, Glacier +[7,10], {00184}, Cyclone +[7,11], {00913}, Forge +[8,01], {00490}, Eclipse +[8,02], {00910}, Echo +[8,03], {00000}, UNUSED +[8,04], {00744}, Axis +[8,05], {00712}, Lunar +[8,06], {00961}, Cosmos +[8,07], {00797}, Apollo +[8,08], {00963}, Spectrum +[8,09], {00855}, Neptune +[8,10], {00624}, Titan +[8,11], {00652}, Ember diff --git a/Data/manifests/87Containers.txt b/Data/manifests/87Containers.txt new file mode 100644 index 0000000..9f3cbf7 --- /dev/null +++ b/Data/manifests/87Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00964}, Forge +[1,02], {00301}, Cyclone +[1,03], {00196}, Vortex +[1,04], {00415}, Atlas +[1,05], {00396}, Orion +[1,06], {00835}, Crystal +[1,07], {00511}, Nimbus +[1,08], {00740}, Horizon +[1,09], {00693}, Cyclone +[1,10], {00489}, Tesla +[1,11], {00405}, Spectrum +[2,01], {00354}, Polaris +[2,02], {00800}, Zenith +[2,03], {00888}, Phoenix +[2,04], {00588}, Cosmos +[2,05], {00146}, Nexus +[2,06], {00355}, Mirage +[2,07], {00345}, Zenith +[2,08], {00862}, Horizon +[2,09], {00953}, Odyssey +[2,10], {00403}, Forge +[2,11], {00330}, Nexus +[3,01], {00226}, Nova +[3,02], {00404}, Inferno +[3,03], {00822}, Axis +[3,04], {00400}, Beacon +[3,05], {00204}, Echo +[3,06], {00749}, Cyclone +[3,07], {00909}, Singularity +[3,08], {00204}, Echo +[3,09], {00915}, Eclipse +[3,10], {00393}, Tectonic +[3,11], {00930}, Odyssey +[4,01], {00430}, Polaris +[4,02], {00219}, Nova +[4,03], {00926}, Echo +[4,04], {00171}, Nimbus +[4,05], {00645}, Solstice +[4,06], {00646}, Comet +[4,07], {00906}, Sol +[4,08], {00203}, Voyager +[4,09], {00736}, Spectrum +[4,10], {00886}, Solstice +[4,11], {00797}, Atlas +[5,01], {00739}, Comet +[5,02], {00861}, Shadow +[5,03], {00308}, Orion +[5,04], {00752}, Eclipse +[5,05], {00213}, Polaris +[5,06], {00840}, Dynamo +[5,07], {00329}, Inferno +[5,08], {00346}, Titan +[5,09], {00584}, Forge +[5,10], {00266}, Radiance +[5,11], {00678}, Nimbus +[6,01], {00231}, Zenith +[6,02], {00872}, Singularity +[6,03], {00721}, Tectonic +[6,04], {00944}, Horizon +[6,05], {00647}, Tesla +[6,06], {00214}, Axis +[6,07], {00341}, Polaris +[6,08], {00699}, Polaris +[6,09], {00698}, Radiance +[6,10], {00536}, Atlas +[6,11], {00785}, Apollo +[7,01], {00721}, Inferno +[7,02], {00295}, Inferno +[7,03], {00585}, Axis +[7,04], {00546}, Solstice +[7,05], {00394}, Vortex +[7,06], {00890}, Nimbus +[7,07], {00107}, Titan +[7,08], {00319}, Zenith +[7,09], {00950}, Velocity +[7,10], {00895}, Meteor +[7,11], {00189}, Zephyr +[8,01], {00512}, Glacier +[8,02], {00196}, Cosmos +[8,03], {00828}, Velocity +[8,04], {00924}, Drift +[8,05], {00773}, Comet +[8,06], {00476}, Mirage +[8,07], {00297}, Radiance +[8,08], {00571}, Circuit +[8,09], {00690}, Phoenix +[8,10], {00753}, Arcadia +[8,11], {00000}, UNUSED diff --git a/Data/manifests/88Containers.txt b/Data/manifests/88Containers.txt new file mode 100644 index 0000000..caf147b --- /dev/null +++ b/Data/manifests/88Containers.txt @@ -0,0 +1,88 @@ +[1,01], {00884}, Vertex +[1,02], {00105}, Spectrum +[1,03], {00347}, Tesla +[1,04], {00190}, Blaze +[1,05], {00873}, Odyssey +[1,06], {00160}, Atlas +[1,07], {00554}, Singularity +[1,08], {00360}, Atlas +[1,09], {00516}, Ember +[1,10], {00134}, Cosmos +[1,11], {00272}, Ember +[2,01], {00153}, Nimbus +[2,02], {00867}, Velocity +[2,03], {00110}, Spectrum +[2,04], {00524}, Beacon +[2,05], {00236}, Zenith +[2,06], {00411}, Zephyr +[2,07], {00777}, Shard +[2,08], {00769}, Ember +[2,09], {00123}, Matrix +[2,10], {00289}, Stardust +[2,11], {00934}, Zenith +[3,01], {00607}, Phoenix +[3,02], {00906}, Singularity +[3,03], {00821}, Horizon +[3,04], {00583}, Twilight +[3,05], {00899}, Phoenix +[3,06], {00440}, Eclipse +[3,07], {00434}, Zephyr +[3,08], {00624}, Dynamo +[3,09], {00850}, Mirage +[3,10], {00320}, Twilight +[3,11], {00223}, Horizon +[4,01], {00196}, Stardust +[4,02], {00221}, Vertex +[4,03], {00446}, Echo +[4,04], {00237}, Vertex +[4,05], {00318}, Mirage +[4,06], {00910}, Circuit +[4,07], {00213}, Phoenix +[4,08], {00950}, Drift +[4,09], {00446}, Dynamo +[4,10], {00638}, Prism +[4,11], {00377}, Eclipse +[5,01], {00373}, Voyager +[5,02], {00187}, Solstice +[5,03], {00629}, Nimbus +[5,04], {00418}, Comet +[5,05], {00896}, Vertex +[5,06], {00375}, Odyssey +[5,07], {00437}, Dynamo +[5,08], {00521}, Forge +[5,09], {00310}, Cyclone +[5,10], {00124}, Atlas +[5,11], {00740}, Velocity +[6,01], {00604}, Mirage +[6,02], {00689}, Radiance +[6,03], {00480}, Vertex +[6,04], {00536}, Tesla +[6,05], {00135}, Zenith +[6,06], {00598}, Blaze +[6,07], {00832}, Circuit +[6,08], {00247}, Quantum +[6,09], {00344}, Twilight +[6,10], {00359}, Ember +[6,11], {00132}, Glider +[7,01], {00231}, Tectonic +[7,02], {00147}, Sol +[7,03], {00805}, Titan +[7,04], {00621}, Prism +[7,05], {00834}, Circuit +[7,06], {00848}, Cascade +[7,07], {00977}, Zenith +[7,08], {00655}, Echo +[7,09], {00730}, Circuit +[7,10], {00109}, Prism +[7,11], {00609}, Stardust +[8,01], {00648}, Ember +[8,02], {00476}, Horizon +[8,03], {00453}, Odyssey +[8,04], {00910}, Vertex +[8,05], {00460}, Vertex +[8,06], {00947}, Cosmos +[8,07], {00295}, Spectrum +[8,08], {00205}, Singularity +[8,09], {00846}, Orion +[8,10], {00565}, Cyclone +[8,11], {00529}, Meteor diff --git a/Tests/test_pathfinder_balance.py b/Tests/test_pathfinder_balance.py index 12d35d4..6edf5ef 100644 --- a/Tests/test_pathfinder_balance.py +++ b/Tests/test_pathfinder_balance.py @@ -66,7 +66,7 @@ def test_balancing_move_prints(shipcase, pathfinder, capsys): with patch('sys.stdout', new_callable=StringIO) as mock_stdout: balance_moves = pathfinder.balance() for move in balance_moves: - print(move) + print(move[0]) output = mock_stdout.getvalue() diff --git a/backend.py b/backend.py index 6991435..4c9fb5c 100644 --- a/backend.py +++ b/backend.py @@ -1,6 +1,7 @@ from Backend.Classes.Grid import Grid from Backend.Utilities.Utils import upload_manifest, upload_transfer_list from Backend.Classes.Pathfinder import Pathfinder +import time def main(): while True: @@ -20,15 +21,23 @@ def main(): manifest_data = upload_manifest(manifest_name) if job_choice == '1': # Balancing job + new_grid = Grid() new_grid.setup_grid(manifest_data) pathfinder = Pathfinder(new_grid) print(f"Balancing job selected for {manifest_name}.") + start_time = time.time() + balance_moves = pathfinder.balance() + + end_time = time.time() + cost_time = end_time - start_time + print('Balance Moves:') for move in balance_moves: print(move[0]) + print(f"\nBalancing completed in {cost_time:.1f} seconds.") elif job_choice == '2': # Transferring job # Load transfer list for the current case (Case1, Case2, ...) diff --git a/generate_test.py b/generate_test.py new file mode 100644 index 0000000..6c8caa8 --- /dev/null +++ b/generate_test.py @@ -0,0 +1,55 @@ +import random + +def generate_grid(num_containers=40): + rows, cols = 8, 11 # Grid dimensions (8 rows, 11 columns) + grid = [["UNUSED" for _ in range(cols)] for _ in range(rows)] + + # Predefined container names + container_names = [ + "Orion", "Tesla", "Neptune", "Apollo", "Horizon", "Atlas", "Ember", + "Zenith", "Nova", "Echo", "Phoenix", "Quantum", "Solstice", "Mirage", + "Everest", "Polaris", "Halo", "Comet", "Eclipse", "Glacier", "Inferno", + "Twilight", "Gravity", "Odyssey", "Nimbus", "Velocity", "Stardust", + "Titan", "Voyager", "Cosmos", "Echo", "Cyclone", "Zenith", "Zephyr", + "Aurora", "Blaze", "Meteor", "Spectrum", "Lunar", "Vortex", "Spectrum", + "Matrix", "Aero", "Prism", "Vertex", "Nexus", "Eclipse", "Shadow", + "Drift", "Infinity", "Singularity", "Zenith", "Sol", "Horizon", "Glider", + "Arcadia", "Shard", "Radiance", "Dynamo", "Tectonic", "Axis", "Vertex", + "Beacon", "Crystal", "Circuit", "Velocity", "Cascade", "Forge", "Spectrum", + "Borealis" + ] + + # Place containers + remaining_containers = num_containers + while remaining_containers > 0: + col = random.randint(0, cols - 1) # Randomly select a column + + # Find the first available row from the bottom (index 0 to index 7) + for row in range(rows): # Start from index 0 (row 1) and move upward + if grid[row][col] == "UNUSED": # Place container here + weight = random.randint(100, 1000) # Random weight + name = random.choice(container_names) + grid[row][col] = f"{{{weight:05}}}, {name}" # Format weight as 5 digits + remaining_containers -= 1 + break + + # Format grid as output + formatted_grid = [] + for row in range(rows): # Output starts from bottom row (index 0) + for col in range(cols): + position = f"[{row + 1},{col + 1:02}]" # Convert to 1-based indexing + if grid[row][col] == "UNUSED": + formatted_grid.append(f"{position}, {{00000}}, UNUSED") + else: + formatted_grid.append(f"{position}, {grid[row][col]}") + + return formatted_grid + +# Generate and save the grid +for i in range(41, 90): # Generate grids for 21 to 30 containers + test_grid = generate_grid(num_containers=i) + filename = f"{i}Containers.txt" # Use f-string to format the filename + with open(filename, "w") as file: + for line in test_grid: + file.write(line + "\n") + diff --git a/test.py b/test.py new file mode 100644 index 0000000..c311c27 --- /dev/null +++ b/test.py @@ -0,0 +1,51 @@ +from Backend.Classes.Grid import Grid +from Backend.Utilities.Utils import upload_manifest, upload_transfer_list +from Backend.Classes.Pathfinder import Pathfinder +import time +import signal + +# Timeout exception class +class TimeoutException(Exception): + pass + +# Timeout handler +def timeout_handler(signum, frame): + raise TimeoutException +timeout_duration = 900 # 10 minutes +test_cases2 = [f"{i}Containers.txt" for i in range(41, 51)] # Generate filenames dynamically + +# Iterate through balancing test cases +for manifest_name in test_cases2: + try: + # Set the timeout handler + signal.signal(signal.SIGALRM, timeout_handler) + signal.alarm(timeout_duration) # Start the timeout clock + + manifest_data = upload_manifest(manifest_name) + + new_grid = Grid() + new_grid.setup_grid(manifest_data) + pathfinder = Pathfinder(new_grid) + + print(f"Balancing job selected for {manifest_name}.") + start_time = time.time() + + # Run the balance function + balance_moves = pathfinder.balance() + + end_time = time.time() + cost_time = end_time - start_time + + # Display results + print(f"\nBalance Moves for {manifest_name}:") + for move in balance_moves: + print(move[0]) + print(f"\nBalancing for {manifest_name} completed in {cost_time:.1f} seconds.") + print("=" * 40) + + except TimeoutException: + print(f"\nBalancing for {manifest_name} exceeded 10 minutes and was skipped.") + print("=" * 40) + + finally: + signal.alarm(0) # Disable the alarm for the next test \ No newline at end of file From bc0fe09e718e508274cc0bdb90eb92058c4f7b1a Mon Sep 17 00:00:00 2001 From: issy16 Date: Thu, 12 Dec 2024 16:58:26 -0800 Subject: [PATCH 4/8] add test cases --- 21Containers.txt | 88 ------------------------------------------------ 22Containers.txt | 88 ------------------------------------------------ 23Containers.txt | 88 ------------------------------------------------ 24Containers.txt | 88 ------------------------------------------------ 25Containers.txt | 88 ------------------------------------------------ 26Containers.txt | 88 ------------------------------------------------ 27Containers.txt | 88 ------------------------------------------------ 28Containers.txt | 88 ------------------------------------------------ 29Containers.txt | 88 ------------------------------------------------ 30Containers.txt | 88 ------------------------------------------------ 31Containers.txt | 88 ------------------------------------------------ 32Containers.txt | 88 ------------------------------------------------ 33Containers.txt | 88 ------------------------------------------------ 34Containers.txt | 88 ------------------------------------------------ 35Containers.txt | 88 ------------------------------------------------ 36Containers.txt | 88 ------------------------------------------------ 37Containers.txt | 88 ------------------------------------------------ 38Containers.txt | 88 ------------------------------------------------ 39Containers.txt | 88 ------------------------------------------------ 40Containers.txt | 88 ------------------------------------------------ 41Containers.txt | 88 ------------------------------------------------ 42Containers.txt | 88 ------------------------------------------------ 43Containers.txt | 88 ------------------------------------------------ 44Containers.txt | 88 ------------------------------------------------ 45Containers.txt | 88 ------------------------------------------------ 46Containers.txt | 88 ------------------------------------------------ 47Containers.txt | 88 ------------------------------------------------ 48Containers.txt | 88 ------------------------------------------------ 49Containers.txt | 88 ------------------------------------------------ 50Containers.txt | 88 ------------------------------------------------ 51Containers.txt | 88 ------------------------------------------------ 52Containers.txt | 88 ------------------------------------------------ 53Containers.txt | 88 ------------------------------------------------ 54Containers.txt | 88 ------------------------------------------------ 55Containers.txt | 88 ------------------------------------------------ 56Containers.txt | 88 ------------------------------------------------ 57Containers.txt | 88 ------------------------------------------------ 58Containers.txt | 88 ------------------------------------------------ 59Containers.txt | 88 ------------------------------------------------ 60Containers.txt | 88 ------------------------------------------------ 61Containers.txt | 88 ------------------------------------------------ 62Containers.txt | 88 ------------------------------------------------ 63Containers.txt | 88 ------------------------------------------------ 64Containers.txt | 88 ------------------------------------------------ 65Containers.txt | 88 ------------------------------------------------ 66Containers.txt | 88 ------------------------------------------------ 67Containers.txt | 88 ------------------------------------------------ 68Containers.txt | 88 ------------------------------------------------ 69Containers.txt | 88 ------------------------------------------------ 70Containers.txt | 88 ------------------------------------------------ 71Containers.txt | 88 ------------------------------------------------ 72Containers.txt | 88 ------------------------------------------------ 73Containers.txt | 88 ------------------------------------------------ 74Containers.txt | 88 ------------------------------------------------ 75Containers.txt | 88 ------------------------------------------------ 76Containers.txt | 88 ------------------------------------------------ 77Containers.txt | 88 ------------------------------------------------ 78Containers.txt | 88 ------------------------------------------------ 79Containers.txt | 88 ------------------------------------------------ 80Containers.txt | 88 ------------------------------------------------ 81Containers.txt | 88 ------------------------------------------------ 82Containers.txt | 88 ------------------------------------------------ 83Containers.txt | 88 ------------------------------------------------ 84Containers.txt | 88 ------------------------------------------------ 85Containers.txt | 88 ------------------------------------------------ 86Containers.txt | 88 ------------------------------------------------ 87Containers.txt | 88 ------------------------------------------------ 88Containers.txt | 88 ------------------------------------------------ 68 files changed, 5984 deletions(-) delete mode 100644 21Containers.txt delete mode 100644 22Containers.txt delete mode 100644 23Containers.txt delete mode 100644 24Containers.txt delete mode 100644 25Containers.txt delete mode 100644 26Containers.txt delete mode 100644 27Containers.txt delete mode 100644 28Containers.txt delete mode 100644 29Containers.txt delete mode 100644 30Containers.txt delete mode 100644 31Containers.txt delete mode 100644 32Containers.txt delete mode 100644 33Containers.txt delete mode 100644 34Containers.txt delete mode 100644 35Containers.txt delete mode 100644 36Containers.txt delete mode 100644 37Containers.txt delete mode 100644 38Containers.txt delete mode 100644 39Containers.txt delete mode 100644 40Containers.txt delete mode 100644 41Containers.txt delete mode 100644 42Containers.txt delete mode 100644 43Containers.txt delete mode 100644 44Containers.txt delete mode 100644 45Containers.txt delete mode 100644 46Containers.txt delete mode 100644 47Containers.txt delete mode 100644 48Containers.txt delete mode 100644 49Containers.txt delete mode 100644 50Containers.txt delete mode 100644 51Containers.txt delete mode 100644 52Containers.txt delete mode 100644 53Containers.txt delete mode 100644 54Containers.txt delete mode 100644 55Containers.txt delete mode 100644 56Containers.txt delete mode 100644 57Containers.txt delete mode 100644 58Containers.txt delete mode 100644 59Containers.txt delete mode 100644 60Containers.txt delete mode 100644 61Containers.txt delete mode 100644 62Containers.txt delete mode 100644 63Containers.txt delete mode 100644 64Containers.txt delete mode 100644 65Containers.txt delete mode 100644 66Containers.txt delete mode 100644 67Containers.txt delete mode 100644 68Containers.txt delete mode 100644 69Containers.txt delete mode 100644 70Containers.txt delete mode 100644 71Containers.txt delete mode 100644 72Containers.txt delete mode 100644 73Containers.txt delete mode 100644 74Containers.txt delete mode 100644 75Containers.txt delete mode 100644 76Containers.txt delete mode 100644 77Containers.txt delete mode 100644 78Containers.txt delete mode 100644 79Containers.txt delete mode 100644 80Containers.txt delete mode 100644 81Containers.txt delete mode 100644 82Containers.txt delete mode 100644 83Containers.txt delete mode 100644 84Containers.txt delete mode 100644 85Containers.txt delete mode 100644 86Containers.txt delete mode 100644 87Containers.txt delete mode 100644 88Containers.txt diff --git a/21Containers.txt b/21Containers.txt deleted file mode 100644 index 384ac87..0000000 --- a/21Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00466}, Eclipse -[1,02], {00144}, Spectrum -[1,03], {00550}, Beacon -[1,04], {00000}, UNUSED -[1,05], {00615}, Ember -[1,06], {00000}, UNUSED -[1,07], {00676}, Cosmos -[1,08], {00222}, Eclipse -[1,09], {00730}, Beacon -[1,10], {00325}, Polaris -[1,11], {00417}, Echo -[2,01], {00493}, Solstice -[2,02], {00000}, UNUSED -[2,03], {00000}, UNUSED -[2,04], {00000}, UNUSED -[2,05], {00969}, Atlas -[2,06], {00000}, UNUSED -[2,07], {00167}, Echo -[2,08], {00000}, UNUSED -[2,09], {00995}, Prism -[2,10], {00891}, Odyssey -[2,11], {00663}, Spectrum -[3,01], {00000}, UNUSED -[3,02], {00000}, UNUSED -[3,03], {00000}, UNUSED -[3,04], {00000}, UNUSED -[3,05], {00000}, UNUSED -[3,06], {00000}, UNUSED -[3,07], {00259}, Crystal -[3,08], {00000}, UNUSED -[3,09], {00496}, Horizon -[3,10], {00324}, Shadow -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00802}, Dynamo -[4,08], {00000}, UNUSED -[4,09], {00661}, Atlas -[4,10], {00718}, Eclipse -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/22Containers.txt b/22Containers.txt deleted file mode 100644 index 3b66cd3..0000000 --- a/22Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00529}, Eclipse -[1,02], {00286}, Arcadia -[1,03], {00771}, Dynamo -[1,04], {00752}, Voyager -[1,05], {00592}, Zenith -[1,06], {00412}, Cascade -[1,07], {00000}, UNUSED -[1,08], {00186}, Prism -[1,09], {00620}, Halo -[1,10], {00000}, UNUSED -[1,11], {00476}, Glider -[2,01], {00930}, Crystal -[2,02], {00000}, UNUSED -[2,03], {00000}, UNUSED -[2,04], {00000}, UNUSED -[2,05], {00000}, UNUSED -[2,06], {00813}, Aurora -[2,07], {00000}, UNUSED -[2,08], {00944}, Tectonic -[2,09], {00491}, Glider -[2,10], {00000}, UNUSED -[2,11], {00897}, Gravity -[3,01], {00404}, Tectonic -[3,02], {00000}, UNUSED -[3,03], {00000}, UNUSED -[3,04], {00000}, UNUSED -[3,05], {00000}, UNUSED -[3,06], {00000}, UNUSED -[3,07], {00000}, UNUSED -[3,08], {00376}, Orion -[3,09], {00130}, Matrix -[3,10], {00000}, UNUSED -[3,11], {00412}, Comet -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00000}, UNUSED -[4,08], {00170}, Polaris -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00579}, Matrix -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00450}, Everest -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00975}, Solstice -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/23Containers.txt b/23Containers.txt deleted file mode 100644 index de84d9e..0000000 --- a/23Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00319}, Stardust -[1,02], {00308}, Cyclone -[1,03], {00227}, Horizon -[1,04], {00476}, Sol -[1,05], {00000}, UNUSED -[1,06], {00617}, Vertex -[1,07], {00501}, Drift -[1,08], {00801}, Twilight -[1,09], {00772}, Sol -[1,10], {00774}, Nova -[1,11], {00495}, Forge -[2,01], {00000}, UNUSED -[2,02], {00130}, Crystal -[2,03], {00198}, Circuit -[2,04], {00460}, Radiance -[2,05], {00000}, UNUSED -[2,06], {00603}, Vortex -[2,07], {00433}, Apollo -[2,08], {00000}, UNUSED -[2,09], {00710}, Inferno -[2,10], {00819}, Vertex -[2,11], {00651}, Nimbus -[3,01], {00000}, UNUSED -[3,02], {00000}, UNUSED -[3,03], {00289}, Zenith -[3,04], {00820}, Cascade -[3,05], {00000}, UNUSED -[3,06], {00882}, Arcadia -[3,07], {00269}, Axis -[3,08], {00000}, UNUSED -[3,09], {00000}, UNUSED -[3,10], {00000}, UNUSED -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00889}, Cyclone -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/24Containers.txt b/24Containers.txt deleted file mode 100644 index 6b19ff0..0000000 --- a/24Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00998}, Zephyr -[1,02], {00708}, Blaze -[1,03], {00700}, Polaris -[1,04], {00629}, Cyclone -[1,05], {00955}, Glider -[1,06], {00277}, Vortex -[1,07], {00395}, Vertex -[1,08], {00272}, Zephyr -[1,09], {00000}, UNUSED -[1,10], {00818}, Prism -[1,11], {00398}, Polaris -[2,01], {00533}, Radiance -[2,02], {00000}, UNUSED -[2,03], {00216}, Phoenix -[2,04], {00930}, Quantum -[2,05], {00451}, Glacier -[2,06], {00117}, Drift -[2,07], {00879}, Shadow -[2,08], {00000}, UNUSED -[2,09], {00000}, UNUSED -[2,10], {00574}, Nova -[2,11], {00316}, Nimbus -[3,01], {00000}, UNUSED -[3,02], {00000}, UNUSED -[3,03], {00617}, Cyclone -[3,04], {00513}, Glider -[3,05], {00664}, Prism -[3,06], {00000}, UNUSED -[3,07], {00888}, Sol -[3,08], {00000}, UNUSED -[3,09], {00000}, UNUSED -[3,10], {00720}, Titan -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00811}, Vertex -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/25Containers.txt b/25Containers.txt deleted file mode 100644 index da631e3..0000000 --- a/25Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00000}, UNUSED -[1,02], {00885}, Neptune -[1,03], {00591}, Vertex -[1,04], {00893}, Glacier -[1,05], {00892}, Odyssey -[1,06], {00211}, Spectrum -[1,07], {00150}, Polaris -[1,08], {00944}, Solstice -[1,09], {00513}, Forge -[1,10], {00999}, Singularity -[1,11], {00291}, Comet -[2,01], {00000}, UNUSED -[2,02], {00126}, Mirage -[2,03], {00742}, Cosmos -[2,04], {00000}, UNUSED -[2,05], {00000}, UNUSED -[2,06], {00752}, Tesla -[2,07], {00000}, UNUSED -[2,08], {00133}, Radiance -[2,09], {00708}, Axis -[2,10], {00000}, UNUSED -[2,11], {00673}, Eclipse -[3,01], {00000}, UNUSED -[3,02], {00937}, Apollo -[3,03], {00858}, Shard -[3,04], {00000}, UNUSED -[3,05], {00000}, UNUSED -[3,06], {00398}, Inferno -[3,07], {00000}, UNUSED -[3,08], {00553}, Infinity -[3,09], {00786}, Spectrum -[3,10], {00000}, UNUSED -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00704}, Forge -[4,03], {00910}, Radiance -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00341}, Axis -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00368}, Vertex -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/26Containers.txt b/26Containers.txt deleted file mode 100644 index 06c3537..0000000 --- a/26Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00740}, Echo -[1,02], {00860}, Cascade -[1,03], {00400}, Singularity -[1,04], {00481}, Crystal -[1,05], {00137}, Polaris -[1,06], {00000}, UNUSED -[1,07], {00262}, Phoenix -[1,08], {00721}, Echo -[1,09], {00752}, Nova -[1,10], {00985}, Eclipse -[1,11], {00920}, Cascade -[2,01], {00213}, Zephyr -[2,02], {00316}, Nimbus -[2,03], {00905}, Lunar -[2,04], {00000}, UNUSED -[2,05], {00000}, UNUSED -[2,06], {00000}, UNUSED -[2,07], {00280}, Zenith -[2,08], {00915}, Forge -[2,09], {00000}, UNUSED -[2,10], {00380}, Velocity -[2,11], {00000}, UNUSED -[3,01], {00000}, UNUSED -[3,02], {00778}, Borealis -[3,03], {00642}, Tesla -[3,04], {00000}, UNUSED -[3,05], {00000}, UNUSED -[3,06], {00000}, UNUSED -[3,07], {00000}, UNUSED -[3,08], {00541}, Halo -[3,09], {00000}, UNUSED -[3,10], {00131}, Matrix -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00320}, Orion -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00000}, UNUSED -[4,08], {00797}, Cyclone -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00176}, Singularity -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00977}, Orion -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00264}, Twilight -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00744}, Polaris -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/27Containers.txt b/27Containers.txt deleted file mode 100644 index a955d2b..0000000 --- a/27Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00194}, Aurora -[1,02], {00476}, Stardust -[1,03], {00474}, Dynamo -[1,04], {00663}, Vortex -[1,05], {00360}, Neptune -[1,06], {00780}, Glacier -[1,07], {00607}, Circuit -[1,08], {00974}, Solstice -[1,09], {00455}, Lunar -[1,10], {00340}, Ember -[1,11], {00575}, Circuit -[2,01], {00658}, Zenith -[2,02], {00750}, Ember -[2,03], {00709}, Aero -[2,04], {00359}, Twilight -[2,05], {00301}, Halo -[2,06], {00719}, Vortex -[2,07], {00000}, UNUSED -[2,08], {00664}, Arcadia -[2,09], {00274}, Shadow -[2,10], {00000}, UNUSED -[2,11], {00000}, UNUSED -[3,01], {00177}, Prism -[3,02], {00243}, Drift -[3,03], {00862}, Spectrum -[3,04], {00618}, Neptune -[3,05], {00455}, Forge -[3,06], {00000}, UNUSED -[3,07], {00000}, UNUSED -[3,08], {00000}, UNUSED -[3,09], {00368}, Inferno -[3,10], {00000}, UNUSED -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00749}, Dynamo -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00970}, Glider -[4,06], {00000}, UNUSED -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/28Containers.txt b/28Containers.txt deleted file mode 100644 index 3613632..0000000 --- a/28Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00539}, Odyssey -[1,02], {00978}, Zenith -[1,03], {00204}, Matrix -[1,04], {00559}, Nimbus -[1,05], {00000}, UNUSED -[1,06], {00416}, Solstice -[1,07], {00629}, Cosmos -[1,08], {00678}, Gravity -[1,09], {00618}, Gravity -[1,10], {00521}, Velocity -[1,11], {00860}, Aurora -[2,01], {00627}, Cascade -[2,02], {00188}, Spectrum -[2,03], {00428}, Spectrum -[2,04], {00356}, Velocity -[2,05], {00000}, UNUSED -[2,06], {00628}, Circuit -[2,07], {00375}, Drift -[2,08], {00646}, Vertex -[2,09], {00214}, Zenith -[2,10], {00537}, Echo -[2,11], {00100}, Drift -[3,01], {00411}, Shard -[3,02], {00000}, UNUSED -[3,03], {00000}, UNUSED -[3,04], {00000}, UNUSED -[3,05], {00000}, UNUSED -[3,06], {00000}, UNUSED -[3,07], {00827}, Cosmos -[3,08], {00000}, UNUSED -[3,09], {00732}, Titan -[3,10], {00619}, Vertex -[3,11], {00000}, UNUSED -[4,01], {00330}, Crystal -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00731}, Nova -[4,08], {00000}, UNUSED -[4,09], {00581}, Zenith -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00315}, Atlas -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/29Containers.txt b/29Containers.txt deleted file mode 100644 index 6ff21dc..0000000 --- a/29Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00611}, Borealis -[1,02], {00905}, Tesla -[1,03], {00542}, Velocity -[1,04], {00330}, Vertex -[1,05], {00237}, Zephyr -[1,06], {00979}, Eclipse -[1,07], {00288}, Twilight -[1,08], {00263}, Axis -[1,09], {00906}, Spectrum -[1,10], {00366}, Glacier -[1,11], {00818}, Glider -[2,01], {00000}, UNUSED -[2,02], {00902}, Glider -[2,03], {00836}, Vertex -[2,04], {00000}, UNUSED -[2,05], {00639}, Horizon -[2,06], {00236}, Voyager -[2,07], {00219}, Phoenix -[2,08], {00249}, Glider -[2,09], {00667}, Mirage -[2,10], {00143}, Velocity -[2,11], {00458}, Spectrum -[3,01], {00000}, UNUSED -[3,02], {00701}, Horizon -[3,03], {00000}, UNUSED -[3,04], {00000}, UNUSED -[3,05], {00833}, Infinity -[3,06], {00000}, UNUSED -[3,07], {00280}, Cascade -[3,08], {00205}, Vortex -[3,09], {00000}, UNUSED -[3,10], {00778}, Echo -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00531}, Nova -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00115}, Eclipse -[4,06], {00000}, UNUSED -[4,07], {00000}, UNUSED -[4,08], {00207}, Gravity -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00585}, Circuit -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/30Containers.txt b/30Containers.txt deleted file mode 100644 index 4aba1b4..0000000 --- a/30Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00738}, Zenith -[1,02], {00680}, Blaze -[1,03], {00386}, Inferno -[1,04], {00655}, Vortex -[1,05], {00595}, Horizon -[1,06], {00712}, Spectrum -[1,07], {00235}, Spectrum -[1,08], {00221}, Singularity -[1,09], {00913}, Twilight -[1,10], {00824}, Nova -[1,11], {00947}, Circuit -[2,01], {00000}, UNUSED -[2,02], {00695}, Tectonic -[2,03], {00769}, Meteor -[2,04], {00165}, Echo -[2,05], {00000}, UNUSED -[2,06], {00459}, Apollo -[2,07], {00583}, Matrix -[2,08], {00498}, Twilight -[2,09], {00492}, Vertex -[2,10], {00949}, Axis -[2,11], {00516}, Cascade -[3,01], {00000}, UNUSED -[3,02], {00846}, Polaris -[3,03], {00539}, Blaze -[3,04], {00911}, Blaze -[3,05], {00000}, UNUSED -[3,06], {00000}, UNUSED -[3,07], {00000}, UNUSED -[3,08], {00326}, Shard -[3,09], {00523}, Orion -[3,10], {00565}, Comet -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00466}, Cosmos -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00486}, Vertex -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00495}, Shadow -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00904}, Nova -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/31Containers.txt b/31Containers.txt deleted file mode 100644 index 3cdc7f3..0000000 --- a/31Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00942}, Vertex -[1,02], {00871}, Inferno -[1,03], {00202}, Nimbus -[1,04], {00869}, Voyager -[1,05], {00805}, Vertex -[1,06], {00661}, Apollo -[1,07], {00466}, Nexus -[1,08], {00466}, Spectrum -[1,09], {00206}, Orion -[1,10], {00964}, Glacier -[1,11], {00000}, UNUSED -[2,01], {00368}, Quantum -[2,02], {00946}, Singularity -[2,03], {00602}, Zenith -[2,04], {00462}, Odyssey -[2,05], {00388}, Stardust -[2,06], {00207}, Nova -[2,07], {00239}, Forge -[2,08], {00154}, Polaris -[2,09], {00000}, UNUSED -[2,10], {00409}, Aero -[2,11], {00000}, UNUSED -[3,01], {00000}, UNUSED -[3,02], {00476}, Zenith -[3,03], {00000}, UNUSED -[3,04], {00444}, Halo -[3,05], {00228}, Phoenix -[3,06], {00320}, Horizon -[3,07], {00643}, Sol -[3,08], {00000}, UNUSED -[3,09], {00000}, UNUSED -[3,10], {00000}, UNUSED -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00901}, Solstice -[4,03], {00000}, UNUSED -[4,04], {00203}, Comet -[4,05], {00823}, Dynamo -[4,06], {00000}, UNUSED -[4,07], {00113}, Cascade -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00132}, Arcadia -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00868}, Vertex -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00295}, Matrix -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/32Containers.txt b/32Containers.txt deleted file mode 100644 index ed533f5..0000000 --- a/32Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00640}, Eclipse -[1,02], {00836}, Singularity -[1,03], {00793}, Vortex -[1,04], {00536}, Meteor -[1,05], {00259}, Matrix -[1,06], {00969}, Shard -[1,07], {00725}, Nexus -[1,08], {00339}, Crystal -[1,09], {00269}, Zenith -[1,10], {00451}, Crystal -[1,11], {00763}, Cyclone -[2,01], {00354}, Cascade -[2,02], {00586}, Arcadia -[2,03], {00496}, Cosmos -[2,04], {00640}, Quantum -[2,05], {00739}, Axis -[2,06], {00912}, Glider -[2,07], {00000}, UNUSED -[2,08], {00690}, Aero -[2,09], {00148}, Eclipse -[2,10], {00870}, Zephyr -[2,11], {00724}, Beacon -[3,01], {00000}, UNUSED -[3,02], {00230}, Titan -[3,03], {00646}, Horizon -[3,04], {00884}, Horizon -[3,05], {00000}, UNUSED -[3,06], {00251}, Axis -[3,07], {00000}, UNUSED -[3,08], {00770}, Cyclone -[3,09], {00000}, UNUSED -[3,10], {00000}, UNUSED -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00490}, Radiance -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00231}, Inferno -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00679}, Beacon -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00122}, Circuit -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00778}, Velocity -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00104}, Phoenix -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/33Containers.txt b/33Containers.txt deleted file mode 100644 index 64db68b..0000000 --- a/33Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00369}, Aero -[1,02], {00115}, Spectrum -[1,03], {00415}, Echo -[1,04], {00270}, Zenith -[1,05], {00125}, Mirage -[1,06], {00819}, Vortex -[1,07], {00973}, Singularity -[1,08], {00814}, Vortex -[1,09], {00736}, Halo -[1,10], {00902}, Circuit -[1,11], {00544}, Velocity -[2,01], {00325}, Velocity -[2,02], {00500}, Nova -[2,03], {00438}, Orion -[2,04], {00000}, UNUSED -[2,05], {00000}, UNUSED -[2,06], {00656}, Vortex -[2,07], {00609}, Beacon -[2,08], {00548}, Comet -[2,09], {00214}, Meteor -[2,10], {00713}, Singularity -[2,11], {00889}, Glider -[3,01], {00000}, UNUSED -[3,02], {00000}, UNUSED -[3,03], {00594}, Stardust -[3,04], {00000}, UNUSED -[3,05], {00000}, UNUSED -[3,06], {00537}, Halo -[3,07], {00886}, Zephyr -[3,08], {00244}, Zenith -[3,09], {00744}, Inferno -[3,10], {00000}, UNUSED -[3,11], {00278}, Phoenix -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00844}, Spectrum -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00509}, Phoenix -[4,08], {00101}, Ember -[4,09], {00704}, Radiance -[4,10], {00000}, UNUSED -[4,11], {00636}, Glider -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00492}, Solstice -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00804}, Nexus -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/34Containers.txt b/34Containers.txt deleted file mode 100644 index 073b369..0000000 --- a/34Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00647}, Shard -[1,02], {00766}, Vertex -[1,03], {00281}, Solstice -[1,04], {00626}, Twilight -[1,05], {00260}, Solstice -[1,06], {00293}, Titan -[1,07], {00756}, Tesla -[1,08], {00686}, Crystal -[1,09], {00635}, Orion -[1,10], {00622}, Aurora -[1,11], {00655}, Titan -[2,01], {00420}, Forge -[2,02], {00321}, Gravity -[2,03], {00000}, UNUSED -[2,04], {00299}, Meteor -[2,05], {00292}, Horizon -[2,06], {00563}, Everest -[2,07], {00864}, Sol -[2,08], {00574}, Lunar -[2,09], {00548}, Solstice -[2,10], {00944}, Velocity -[2,11], {00247}, Odyssey -[3,01], {00701}, Matrix -[3,02], {00000}, UNUSED -[3,03], {00000}, UNUSED -[3,04], {00651}, Singularity -[3,05], {00729}, Atlas -[3,06], {00600}, Orion -[3,07], {00267}, Aurora -[3,08], {00988}, Voyager -[3,09], {00902}, Orion -[3,10], {00271}, Horizon -[3,11], {00123}, Vertex -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00182}, Cosmos -[4,06], {00549}, Shadow -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00102}, Blaze -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00390}, Polaris -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/35Containers.txt b/35Containers.txt deleted file mode 100644 index 73b0066..0000000 --- a/35Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00846}, Lunar -[1,02], {00373}, Spectrum -[1,03], {00404}, Zenith -[1,04], {00370}, Cosmos -[1,05], {00385}, Apollo -[1,06], {00794}, Horizon -[1,07], {00712}, Mirage -[1,08], {00564}, Comet -[1,09], {00980}, Zenith -[1,10], {00894}, Tectonic -[1,11], {00641}, Drift -[2,01], {00214}, Glider -[2,02], {00636}, Quantum -[2,03], {00157}, Forge -[2,04], {00636}, Singularity -[2,05], {00111}, Vortex -[2,06], {00487}, Circuit -[2,07], {00597}, Zephyr -[2,08], {00000}, UNUSED -[2,09], {00607}, Crystal -[2,10], {00249}, Arcadia -[2,11], {00391}, Dynamo -[3,01], {00937}, Tesla -[3,02], {00516}, Voyager -[3,03], {00792}, Shadow -[3,04], {00926}, Twilight -[3,05], {00680}, Singularity -[3,06], {00424}, Vertex -[3,07], {00000}, UNUSED -[3,08], {00000}, UNUSED -[3,09], {00000}, UNUSED -[3,10], {00133}, Apollo -[3,11], {00607}, Drift -[4,01], {00000}, UNUSED -[4,02], {00422}, Glider -[4,03], {00657}, Vertex -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00670}, Cyclone -[5,01], {00000}, UNUSED -[5,02], {00639}, Spectrum -[5,03], {00343}, Zenith -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00364}, Spectrum -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/36Containers.txt b/36Containers.txt deleted file mode 100644 index 5edaa4c..0000000 --- a/36Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00768}, Axis -[1,02], {00401}, Echo -[1,03], {00674}, Horizon -[1,04], {00803}, Vertex -[1,05], {00143}, Tectonic -[1,06], {00000}, UNUSED -[1,07], {00730}, Comet -[1,08], {00910}, Shard -[1,09], {00248}, Singularity -[1,10], {00341}, Inferno -[1,11], {00421}, Halo -[2,01], {00000}, UNUSED -[2,02], {00000}, UNUSED -[2,03], {00718}, Halo -[2,04], {00752}, Mirage -[2,05], {00000}, UNUSED -[2,06], {00000}, UNUSED -[2,07], {00554}, Cyclone -[2,08], {00769}, Horizon -[2,09], {00145}, Vertex -[2,10], {00108}, Voyager -[2,11], {00488}, Comet -[3,01], {00000}, UNUSED -[3,02], {00000}, UNUSED -[3,03], {00774}, Titan -[3,04], {00369}, Shard -[3,05], {00000}, UNUSED -[3,06], {00000}, UNUSED -[3,07], {00140}, Matrix -[3,08], {00537}, Infinity -[3,09], {00807}, Zenith -[3,10], {00840}, Neptune -[3,11], {00439}, Cascade -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00190}, Atlas -[4,04], {00802}, Cosmos -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00000}, UNUSED -[4,08], {00627}, Voyager -[4,09], {00971}, Zephyr -[4,10], {00000}, UNUSED -[4,11], {00491}, Forge -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00187}, Neptune -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00162}, Spectrum -[5,10], {00000}, UNUSED -[5,11], {00232}, Twilight -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00451}, Cascade -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00375}, Horizon -[6,10], {00000}, UNUSED -[6,11], {00867}, Phoenix -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00852}, Titan -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/37Containers.txt b/37Containers.txt deleted file mode 100644 index c3cf836..0000000 --- a/37Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00806}, Singularity -[1,02], {00250}, Nimbus -[1,03], {00640}, Eclipse -[1,04], {00887}, Vertex -[1,05], {00405}, Apollo -[1,06], {00263}, Zephyr -[1,07], {00256}, Echo -[1,08], {00820}, Stardust -[1,09], {00835}, Crystal -[1,10], {00989}, Zephyr -[1,11], {00864}, Horizon -[2,01], {00501}, Polaris -[2,02], {00650}, Stardust -[2,03], {00195}, Tesla -[2,04], {00673}, Glacier -[2,05], {00000}, UNUSED -[2,06], {00435}, Odyssey -[2,07], {00779}, Echo -[2,08], {00749}, Zenith -[2,09], {00857}, Zenith -[2,10], {00590}, Eclipse -[2,11], {00510}, Orion -[3,01], {00000}, UNUSED -[3,02], {00270}, Ember -[3,03], {00366}, Nexus -[3,04], {00708}, Twilight -[3,05], {00000}, UNUSED -[3,06], {00000}, UNUSED -[3,07], {00542}, Zephyr -[3,08], {00000}, UNUSED -[3,09], {00222}, Crystal -[3,10], {00802}, Zenith -[3,11], {00750}, Zenith -[4,01], {00000}, UNUSED -[4,02], {00189}, Vortex -[4,03], {00381}, Horizon -[4,04], {00696}, Glacier -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00219}, Blaze -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00248}, Blaze -[4,11], {00718}, Meteor -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00899}, Meteor -[5,04], {00603}, Mirage -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00858}, Echo -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/38Containers.txt b/38Containers.txt deleted file mode 100644 index 097ea3d..0000000 --- a/38Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00947}, Polaris -[1,02], {00689}, Aero -[1,03], {00804}, Glacier -[1,04], {00459}, Crystal -[1,05], {00966}, Glider -[1,06], {00741}, Voyager -[1,07], {00357}, Zenith -[1,08], {00401}, Dynamo -[1,09], {00829}, Glider -[1,10], {00566}, Everest -[1,11], {00243}, Orion -[2,01], {00244}, Spectrum -[2,02], {00136}, Vertex -[2,03], {00551}, Everest -[2,04], {00183}, Zenith -[2,05], {00340}, Forge -[2,06], {00752}, Velocity -[2,07], {00152}, Nova -[2,08], {00343}, Velocity -[2,09], {00298}, Aero -[2,10], {00848}, Zenith -[2,11], {00799}, Shadow -[3,01], {00000}, UNUSED -[3,02], {00690}, Everest -[3,03], {00568}, Vertex -[3,04], {00506}, Spectrum -[3,05], {00946}, Circuit -[3,06], {00000}, UNUSED -[3,07], {00400}, Comet -[3,08], {00000}, UNUSED -[3,09], {00534}, Nimbus -[3,10], {00550}, Mirage -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00187}, Meteor -[4,03], {00628}, Sol -[4,04], {00973}, Arcadia -[4,05], {00641}, Horizon -[4,06], {00000}, UNUSED -[4,07], {00217}, Shadow -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00827}, Nexus -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00318}, Mirage -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00506}, Dynamo -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00924}, Horizon -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/39Containers.txt b/39Containers.txt deleted file mode 100644 index edb2595..0000000 --- a/39Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00107}, Vortex -[1,02], {00595}, Nova -[1,03], {00272}, Eclipse -[1,04], {00876}, Meteor -[1,05], {00540}, Horizon -[1,06], {00305}, Comet -[1,07], {00667}, Radiance -[1,08], {00239}, Forge -[1,09], {00307}, Gravity -[1,10], {00604}, Cyclone -[1,11], {00302}, Horizon -[2,01], {00828}, Solstice -[2,02], {00000}, UNUSED -[2,03], {00000}, UNUSED -[2,04], {00369}, Glacier -[2,05], {00535}, Aero -[2,06], {00370}, Cyclone -[2,07], {00552}, Lunar -[2,08], {00125}, Nimbus -[2,09], {00238}, Meteor -[2,10], {00931}, Velocity -[2,11], {00596}, Solstice -[3,01], {00662}, Zenith -[3,02], {00000}, UNUSED -[3,03], {00000}, UNUSED -[3,04], {00000}, UNUSED -[3,05], {00447}, Meteor -[3,06], {00859}, Matrix -[3,07], {00730}, Prism -[3,08], {00179}, Quantum -[3,09], {00246}, Blaze -[3,10], {00000}, UNUSED -[3,11], {00196}, Vertex -[4,01], {00920}, Blaze -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00422}, Cyclone -[4,07], {00336}, Vertex -[4,08], {00494}, Vortex -[4,09], {00780}, Lunar -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00991}, Ember -[5,07], {00775}, Solstice -[5,08], {00936}, Cyclone -[5,09], {00515}, Orion -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00783}, Zephyr -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00893}, Atlas -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00489}, Aero -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/40Containers.txt b/40Containers.txt deleted file mode 100644 index 94a3d9d..0000000 --- a/40Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00343}, Nexus -[1,02], {00882}, Atlas -[1,03], {00688}, Vertex -[1,04], {00952}, Vortex -[1,05], {00521}, Borealis -[1,06], {00466}, Velocity -[1,07], {00117}, Mirage -[1,08], {00720}, Vortex -[1,09], {00522}, Aurora -[1,10], {00648}, Mirage -[1,11], {00479}, Titan -[2,01], {00000}, UNUSED -[2,02], {00387}, Atlas -[2,03], {00000}, UNUSED -[2,04], {00123}, Spectrum -[2,05], {00978}, Dynamo -[2,06], {00864}, Dynamo -[2,07], {00206}, Arcadia -[2,08], {00572}, Vortex -[2,09], {00228}, Zenith -[2,10], {00614}, Tectonic -[2,11], {00448}, Titan -[3,01], {00000}, UNUSED -[3,02], {00000}, UNUSED -[3,03], {00000}, UNUSED -[3,04], {00000}, UNUSED -[3,05], {00456}, Spectrum -[3,06], {00344}, Meteor -[3,07], {00538}, Arcadia -[3,08], {00796}, Ember -[3,09], {00557}, Tectonic -[3,10], {00599}, Velocity -[3,11], {00567}, Circuit -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00349}, Voyager -[4,06], {00000}, UNUSED -[4,07], {00175}, Vertex -[4,08], {00752}, Everest -[4,09], {00218}, Velocity -[4,10], {00000}, UNUSED -[4,11], {00504}, Atlas -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00942}, Tesla -[5,06], {00000}, UNUSED -[5,07], {00865}, Crystal -[5,08], {00158}, Echo -[5,09], {00491}, Zenith -[5,10], {00000}, UNUSED -[5,11], {00990}, Spectrum -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00181}, Cyclone -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00302}, Ember -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00728}, Singularity -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/41Containers.txt b/41Containers.txt deleted file mode 100644 index 6950f65..0000000 --- a/41Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00653}, Titan -[1,02], {00689}, Titan -[1,03], {00117}, Spectrum -[1,04], {00592}, Radiance -[1,05], {00923}, Polaris -[1,06], {00138}, Vertex -[1,07], {00951}, Cyclone -[1,08], {00127}, Ember -[1,09], {00442}, Zenith -[1,10], {00748}, Drift -[1,11], {00979}, Crystal -[2,01], {00762}, Velocity -[2,02], {00563}, Spectrum -[2,03], {00851}, Matrix -[2,04], {00583}, Zenith -[2,05], {00246}, Zenith -[2,06], {00728}, Zephyr -[2,07], {00661}, Tectonic -[2,08], {00000}, UNUSED -[2,09], {00515}, Glider -[2,10], {00157}, Meteor -[2,11], {00315}, Eclipse -[3,01], {00196}, Eclipse -[3,02], {00000}, UNUSED -[3,03], {00670}, Circuit -[3,04], {00780}, Meteor -[3,05], {00979}, Solstice -[3,06], {00260}, Velocity -[3,07], {00298}, Shard -[3,08], {00000}, UNUSED -[3,09], {00801}, Circuit -[3,10], {00625}, Tesla -[3,11], {00779}, Arcadia -[4,01], {00368}, Solstice -[4,02], {00000}, UNUSED -[4,03], {00675}, Dynamo -[4,04], {00309}, Solstice -[4,05], {00820}, Spectrum -[4,06], {00732}, Aurora -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00794}, Zenith -[4,11], {00896}, Nexus -[5,01], {00589}, Circuit -[5,02], {00000}, UNUSED -[5,03], {00789}, Nova -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00678}, Sol -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00278}, Polaris -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/42Containers.txt b/42Containers.txt deleted file mode 100644 index b20e2f1..0000000 --- a/42Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00289}, Inferno -[1,02], {00169}, Tesla -[1,03], {00938}, Sol -[1,04], {00470}, Tectonic -[1,05], {00230}, Mirage -[1,06], {00559}, Stardust -[1,07], {00485}, Cascade -[1,08], {00302}, Gravity -[1,09], {00660}, Cascade -[1,10], {00193}, Shard -[1,11], {00276}, Everest -[2,01], {00863}, Forge -[2,02], {00898}, Eclipse -[2,03], {00176}, Neptune -[2,04], {00288}, Aurora -[2,05], {00377}, Circuit -[2,06], {00665}, Aero -[2,07], {00822}, Velocity -[2,08], {00000}, UNUSED -[2,09], {00136}, Meteor -[2,10], {00468}, Shard -[2,11], {00816}, Tectonic -[3,01], {00133}, Vortex -[3,02], {00000}, UNUSED -[3,03], {00925}, Zenith -[3,04], {00580}, Forge -[3,05], {00106}, Dynamo -[3,06], {00650}, Vertex -[3,07], {00738}, Vortex -[3,08], {00000}, UNUSED -[3,09], {00433}, Twilight -[3,10], {00836}, Horizon -[3,11], {00134}, Sol -[4,01], {00445}, Spectrum -[4,02], {00000}, UNUSED -[4,03], {00712}, Zenith -[4,04], {00695}, Sol -[4,05], {00427}, Glacier -[4,06], {00294}, Nexus -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00978}, Axis -[4,11], {00549}, Aero -[5,01], {00970}, Zenith -[5,02], {00000}, UNUSED -[5,03], {00436}, Circuit -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00420}, Dynamo -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00271}, Matrix -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00706}, Comet -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/43Containers.txt b/43Containers.txt deleted file mode 100644 index 918d58e..0000000 --- a/43Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00875}, Crystal -[1,02], {00337}, Horizon -[1,03], {00729}, Nimbus -[1,04], {00435}, Blaze -[1,05], {00190}, Halo -[1,06], {00379}, Cosmos -[1,07], {00183}, Cosmos -[1,08], {00275}, Everest -[1,09], {00469}, Voyager -[1,10], {00208}, Spectrum -[1,11], {00557}, Horizon -[2,01], {00226}, Drift -[2,02], {00748}, Apollo -[2,03], {00489}, Tesla -[2,04], {00593}, Twilight -[2,05], {00000}, UNUSED -[2,06], {00395}, Twilight -[2,07], {00566}, Voyager -[2,08], {00469}, Apollo -[2,09], {00381}, Everest -[2,10], {00392}, Forge -[2,11], {00322}, Velocity -[3,01], {00664}, Mirage -[3,02], {00998}, Dynamo -[3,03], {00276}, Prism -[3,04], {00116}, Nexus -[3,05], {00000}, UNUSED -[3,06], {00798}, Gravity -[3,07], {00571}, Drift -[3,08], {00244}, Voyager -[3,09], {00000}, UNUSED -[3,10], {00815}, Matrix -[3,11], {00000}, UNUSED -[4,01], {00286}, Spectrum -[4,02], {00429}, Titan -[4,03], {00361}, Vortex -[4,04], {00794}, Twilight -[4,05], {00000}, UNUSED -[4,06], {00514}, Neptune -[4,07], {00000}, UNUSED -[4,08], {00851}, Nova -[4,09], {00000}, UNUSED -[4,10], {00756}, Quantum -[4,11], {00000}, UNUSED -[5,01], {00482}, Everest -[5,02], {00291}, Everest -[5,03], {00795}, Orion -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00246}, Vortex -[5,07], {00000}, UNUSED -[5,08], {00393}, Forge -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00604}, Solstice -[6,02], {00899}, Eclipse -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/44Containers.txt b/44Containers.txt deleted file mode 100644 index eb12fc3..0000000 --- a/44Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00723}, Matrix -[1,02], {00862}, Nexus -[1,03], {00659}, Cosmos -[1,04], {00219}, Apollo -[1,05], {00968}, Dynamo -[1,06], {00546}, Echo -[1,07], {00900}, Drift -[1,08], {00945}, Comet -[1,09], {00848}, Polaris -[1,10], {00492}, Cyclone -[1,11], {00652}, Mirage -[2,01], {00458}, Matrix -[2,02], {00000}, UNUSED -[2,03], {00000}, UNUSED -[2,04], {00694}, Beacon -[2,05], {00553}, Nexus -[2,06], {00192}, Crystal -[2,07], {00907}, Voyager -[2,08], {00653}, Cyclone -[2,09], {00524}, Spectrum -[2,10], {00533}, Cosmos -[2,11], {00317}, Beacon -[3,01], {00378}, Circuit -[3,02], {00000}, UNUSED -[3,03], {00000}, UNUSED -[3,04], {00250}, Ember -[3,05], {00561}, Echo -[3,06], {00588}, Stardust -[3,07], {00654}, Cyclone -[3,08], {00613}, Polaris -[3,09], {00446}, Comet -[3,10], {00000}, UNUSED -[3,11], {00258}, Spectrum -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00776}, Atlas -[4,05], {00286}, Zenith -[4,06], {00466}, Zenith -[4,07], {00000}, UNUSED -[4,08], {00473}, Zenith -[4,09], {00809}, Nexus -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00534}, Odyssey -[5,05], {00186}, Nexus -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00626}, Infinity -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00837}, Tesla -[6,05], {00572}, Axis -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00301}, Lunar -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00611}, Titan -[7,05], {00978}, Vertex -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00675}, Nexus -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00809}, Polaris -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00269}, Spectrum -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/45Containers.txt b/45Containers.txt deleted file mode 100644 index 4f0bb47..0000000 --- a/45Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00298}, Echo -[1,02], {00979}, Nexus -[1,03], {00919}, Velocity -[1,04], {00832}, Nexus -[1,05], {00956}, Polaris -[1,06], {00710}, Aurora -[1,07], {00417}, Shadow -[1,08], {00653}, Crystal -[1,09], {00937}, Apollo -[1,10], {00152}, Odyssey -[1,11], {00984}, Stardust -[2,01], {00882}, Cosmos -[2,02], {00864}, Zenith -[2,03], {00613}, Forge -[2,04], {00886}, Nimbus -[2,05], {00425}, Vertex -[2,06], {00831}, Horizon -[2,07], {00304}, Horizon -[2,08], {00744}, Spectrum -[2,09], {00897}, Atlas -[2,10], {00119}, Singularity -[2,11], {00000}, UNUSED -[3,01], {00461}, Meteor -[3,02], {00226}, Titan -[3,03], {00000}, UNUSED -[3,04], {00966}, Vertex -[3,05], {00930}, Atlas -[3,06], {00129}, Shard -[3,07], {00223}, Vertex -[3,08], {00849}, Cosmos -[3,09], {00858}, Radiance -[3,10], {00256}, Phoenix -[3,11], {00000}, UNUSED -[4,01], {00372}, Singularity -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00461}, Apollo -[4,05], {00847}, Aurora -[4,06], {00602}, Forge -[4,07], {00677}, Velocity -[4,08], {00517}, Infinity -[4,09], {00952}, Neptune -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00858}, Prism -[5,05], {00000}, UNUSED -[5,06], {00621}, Aero -[5,07], {00449}, Eclipse -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00886}, Aero -[6,05], {00000}, UNUSED -[6,06], {00615}, Radiance -[6,07], {00609}, Comet -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00241}, Glacier -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00119}, Titan -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/46Containers.txt b/46Containers.txt deleted file mode 100644 index f222606..0000000 --- a/46Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00108}, Gravity -[1,02], {00863}, Vertex -[1,03], {00118}, Atlas -[1,04], {00658}, Nexus -[1,05], {00517}, Cascade -[1,06], {00647}, Glacier -[1,07], {00928}, Arcadia -[1,08], {00427}, Zenith -[1,09], {00524}, Atlas -[1,10], {00314}, Velocity -[1,11], {00413}, Stardust -[2,01], {00193}, Blaze -[2,02], {00868}, Polaris -[2,03], {00763}, Eclipse -[2,04], {00480}, Axis -[2,05], {00928}, Crystal -[2,06], {00777}, Orion -[2,07], {00899}, Horizon -[2,08], {00419}, Sol -[2,09], {00674}, Nova -[2,10], {00366}, Borealis -[2,11], {00886}, Nova -[3,01], {00127}, Twilight -[3,02], {00533}, Quantum -[3,03], {00285}, Meteor -[3,04], {00567}, Voyager -[3,05], {00684}, Axis -[3,06], {00315}, Meteor -[3,07], {00739}, Comet -[3,08], {00695}, Echo -[3,09], {00517}, Cascade -[3,10], {00000}, UNUSED -[3,11], {00338}, Circuit -[4,01], {00000}, UNUSED -[4,02], {00668}, Cyclone -[4,03], {00102}, Matrix -[4,04], {00943}, Nexus -[4,05], {00362}, Ember -[4,06], {00918}, Zenith -[4,07], {00134}, Eclipse -[4,08], {00813}, Arcadia -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00785}, Matrix -[5,05], {00615}, Borealis -[5,06], {00860}, Singularity -[5,07], {00782}, Sol -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00609}, Orion -[6,06], {00749}, Dynamo -[6,07], {00913}, Shard -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/47Containers.txt b/47Containers.txt deleted file mode 100644 index 845da07..0000000 --- a/47Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00440}, Arcadia -[1,02], {00551}, Velocity -[1,03], {00908}, Odyssey -[1,04], {00852}, Cascade -[1,05], {00485}, Spectrum -[1,06], {00644}, Forge -[1,07], {00254}, Echo -[1,08], {00632}, Spectrum -[1,09], {00117}, Cosmos -[1,10], {00678}, Shard -[1,11], {00814}, Blaze -[2,01], {00111}, Everest -[2,02], {00637}, Orion -[2,03], {00343}, Sol -[2,04], {00203}, Circuit -[2,05], {00933}, Horizon -[2,06], {00337}, Glider -[2,07], {00000}, UNUSED -[2,08], {00141}, Borealis -[2,09], {00846}, Eclipse -[2,10], {00380}, Mirage -[2,11], {00318}, Everest -[3,01], {00940}, Glacier -[3,02], {00200}, Eclipse -[3,03], {00593}, Vertex -[3,04], {00643}, Matrix -[3,05], {00174}, Spectrum -[3,06], {00210}, Everest -[3,07], {00000}, UNUSED -[3,08], {00958}, Inferno -[3,09], {00411}, Vortex -[3,10], {00909}, Nimbus -[3,11], {00130}, Twilight -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00957}, Axis -[4,04], {00987}, Tectonic -[4,05], {00963}, Cosmos -[4,06], {00576}, Drift -[4,07], {00000}, UNUSED -[4,08], {00675}, Arcadia -[4,09], {00908}, Crystal -[4,10], {00337}, Circuit -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00381}, Polaris -[5,04], {00553}, Sol -[5,05], {00364}, Zenith -[5,06], {00296}, Echo -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00750}, Borealis -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00923}, Atlas -[6,05], {00000}, UNUSED -[6,06], {00645}, Tectonic -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00680}, Forge -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00697}, Echo -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/48Containers.txt b/48Containers.txt deleted file mode 100644 index cd467d9..0000000 --- a/48Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00680}, Blaze -[1,02], {00893}, Blaze -[1,03], {00352}, Gravity -[1,04], {00394}, Vertex -[1,05], {00469}, Lunar -[1,06], {00762}, Singularity -[1,07], {00352}, Shard -[1,08], {00476}, Cyclone -[1,09], {00685}, Aurora -[1,10], {00548}, Matrix -[1,11], {00000}, UNUSED -[2,01], {00422}, Gravity -[2,02], {00242}, Nova -[2,03], {00821}, Meteor -[2,04], {00521}, Glider -[2,05], {00803}, Nexus -[2,06], {00485}, Titan -[2,07], {00362}, Shard -[2,08], {00268}, Phoenix -[2,09], {00508}, Spectrum -[2,10], {00250}, Echo -[2,11], {00000}, UNUSED -[3,01], {00000}, UNUSED -[3,02], {00355}, Echo -[3,03], {00995}, Stardust -[3,04], {00222}, Twilight -[3,05], {00553}, Solstice -[3,06], {00251}, Matrix -[3,07], {00000}, UNUSED -[3,08], {00776}, Axis -[3,09], {00951}, Beacon -[3,10], {00171}, Nimbus -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00704}, Gravity -[4,03], {00801}, Singularity -[4,04], {00475}, Nexus -[4,05], {00813}, Zephyr -[4,06], {00385}, Cyclone -[4,07], {00000}, UNUSED -[4,08], {00879}, Zephyr -[4,09], {00487}, Titan -[4,10], {00664}, Eclipse -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00462}, Cosmos -[5,03], {00587}, Tesla -[5,04], {00000}, UNUSED -[5,05], {00216}, Phoenix -[5,06], {00180}, Aurora -[5,07], {00000}, UNUSED -[5,08], {00686}, Quantum -[5,09], {00717}, Cascade -[5,10], {00717}, Cyclone -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00636}, Shadow -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00121}, Odyssey -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00189}, Cosmos -[6,09], {00926}, Velocity -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00271}, Stardust -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/49Containers.txt b/49Containers.txt deleted file mode 100644 index 523bdbe..0000000 --- a/49Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00649}, Atlas -[1,02], {00517}, Matrix -[1,03], {00742}, Tectonic -[1,04], {00568}, Crystal -[1,05], {00645}, Nova -[1,06], {00419}, Blaze -[1,07], {00483}, Phoenix -[1,08], {00761}, Matrix -[1,09], {00477}, Shard -[1,10], {00386}, Shard -[1,11], {00576}, Shard -[2,01], {00167}, Mirage -[2,02], {00984}, Vertex -[2,03], {00102}, Odyssey -[2,04], {00959}, Neptune -[2,05], {00502}, Everest -[2,06], {00878}, Apollo -[2,07], {00000}, UNUSED -[2,08], {00158}, Gravity -[2,09], {00243}, Stardust -[2,10], {00673}, Echo -[2,11], {00621}, Inferno -[3,01], {00757}, Solstice -[3,02], {00201}, Polaris -[3,03], {00369}, Apollo -[3,04], {00974}, Vortex -[3,05], {00475}, Blaze -[3,06], {00428}, Singularity -[3,07], {00000}, UNUSED -[3,08], {00289}, Cyclone -[3,09], {00630}, Echo -[3,10], {00163}, Orion -[3,11], {00000}, UNUSED -[4,01], {00704}, Zenith -[4,02], {00000}, UNUSED -[4,03], {00211}, Aero -[4,04], {00000}, UNUSED -[4,05], {00537}, Eclipse -[4,06], {00842}, Sol -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00676}, Mirage -[4,10], {00554}, Borealis -[4,11], {00000}, UNUSED -[5,01], {00642}, Echo -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00832}, Forge -[5,06], {00789}, Aurora -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00404}, Spectrum -[5,10], {00388}, Glacier -[5,11], {00000}, UNUSED -[6,01], {00710}, Spectrum -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00210}, Shadow -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00737}, Neptune -[6,11], {00000}, UNUSED -[7,01], {00967}, Odyssey -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00776}, Forge -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00389}, Matrix -[7,11], {00000}, UNUSED -[8,01], {00845}, Twilight -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00453}, Echo -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/50Containers.txt b/50Containers.txt deleted file mode 100644 index fc5bda1..0000000 --- a/50Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00719}, Comet -[1,02], {00271}, Axis -[1,03], {00377}, Orion -[1,04], {00397}, Prism -[1,05], {00410}, Zenith -[1,06], {00246}, Velocity -[1,07], {00462}, Velocity -[1,08], {00233}, Cascade -[1,09], {00959}, Shard -[1,10], {00277}, Lunar -[1,11], {00656}, Horizon -[2,01], {00937}, Gravity -[2,02], {00187}, Sol -[2,03], {00464}, Borealis -[2,04], {00706}, Inferno -[2,05], {00267}, Nova -[2,06], {00666}, Mirage -[2,07], {00929}, Stardust -[2,08], {00784}, Sol -[2,09], {00768}, Everest -[2,10], {00647}, Drift -[2,11], {00632}, Crystal -[3,01], {00000}, UNUSED -[3,02], {00000}, UNUSED -[3,03], {00482}, Ember -[3,04], {00792}, Zenith -[3,05], {00256}, Radiance -[3,06], {00444}, Echo -[3,07], {00211}, Matrix -[3,08], {00854}, Horizon -[3,09], {00533}, Tectonic -[3,10], {00325}, Spectrum -[3,11], {00662}, Sol -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00231}, Stardust -[4,05], {00461}, Polaris -[4,06], {00988}, Eclipse -[4,07], {00528}, Sol -[4,08], {00000}, UNUSED -[4,09], {00719}, Glacier -[4,10], {00913}, Quantum -[4,11], {00952}, Zephyr -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00188}, Meteor -[5,05], {00889}, Cascade -[5,06], {00000}, UNUSED -[5,07], {00969}, Shadow -[5,08], {00000}, UNUSED -[5,09], {00902}, Vertex -[5,10], {00558}, Odyssey -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00598}, Aurora -[6,05], {00281}, Dynamo -[6,06], {00000}, UNUSED -[6,07], {00448}, Vortex -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00844}, Vertex -[7,05], {00603}, Everest -[7,06], {00000}, UNUSED -[7,07], {00849}, Blaze -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00408}, Neptune -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/51Containers.txt b/51Containers.txt deleted file mode 100644 index 85311c9..0000000 --- a/51Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00919}, Comet -[1,02], {00365}, Glacier -[1,03], {00674}, Singularity -[1,04], {00721}, Lunar -[1,05], {00776}, Vertex -[1,06], {00505}, Nimbus -[1,07], {00217}, Blaze -[1,08], {00639}, Singularity -[1,09], {00980}, Spectrum -[1,10], {00162}, Spectrum -[1,11], {00347}, Odyssey -[2,01], {00721}, Vortex -[2,02], {00952}, Eclipse -[2,03], {00806}, Comet -[2,04], {00343}, Orion -[2,05], {00110}, Prism -[2,06], {00207}, Horizon -[2,07], {00306}, Zenith -[2,08], {00477}, Cosmos -[2,09], {00235}, Everest -[2,10], {00801}, Phoenix -[2,11], {00257}, Tectonic -[3,01], {00254}, Atlas -[3,02], {00352}, Aurora -[3,03], {00577}, Beacon -[3,04], {00212}, Eclipse -[3,05], {00492}, Cyclone -[3,06], {00728}, Comet -[3,07], {00381}, Tectonic -[3,08], {00421}, Cyclone -[3,09], {00000}, UNUSED -[3,10], {00814}, Axis -[3,11], {00126}, Comet -[4,01], {00916}, Shard -[4,02], {00345}, Tesla -[4,03], {00239}, Zenith -[4,04], {00523}, Halo -[4,05], {00720}, Beacon -[4,06], {00297}, Sol -[4,07], {00428}, Orion -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00308}, Voyager -[4,11], {00000}, UNUSED -[5,01], {00943}, Lunar -[5,02], {00666}, Aero -[5,03], {00101}, Everest -[5,04], {00466}, Orion -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00446}, Drift -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00844}, Echo -[5,11], {00000}, UNUSED -[6,01], {00732}, Eclipse -[6,02], {00183}, Spectrum -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00819}, Aurora -[7,02], {00818}, Shadow -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00446}, Polaris -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/52Containers.txt b/52Containers.txt deleted file mode 100644 index 866e69c..0000000 --- a/52Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00756}, Drift -[1,02], {00708}, Odyssey -[1,03], {00919}, Solstice -[1,04], {00364}, Mirage -[1,05], {00579}, Glacier -[1,06], {00186}, Circuit -[1,07], {00818}, Spectrum -[1,08], {00446}, Comet -[1,09], {00418}, Echo -[1,10], {00761}, Glacier -[1,11], {00231}, Horizon -[2,01], {00555}, Horizon -[2,02], {00383}, Zephyr -[2,03], {00602}, Polaris -[2,04], {00617}, Axis -[2,05], {00399}, Velocity -[2,06], {00910}, Apollo -[2,07], {00791}, Sol -[2,08], {00929}, Eclipse -[2,09], {00323}, Nexus -[2,10], {00164}, Echo -[2,11], {00127}, Solstice -[3,01], {00000}, UNUSED -[3,02], {00811}, Tectonic -[3,03], {00887}, Singularity -[3,04], {00140}, Polaris -[3,05], {00223}, Drift -[3,06], {00738}, Phoenix -[3,07], {00665}, Lunar -[3,08], {00326}, Sol -[3,09], {00749}, Aurora -[3,10], {00936}, Echo -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00114}, Prism -[4,04], {00754}, Eclipse -[4,05], {00633}, Gravity -[4,06], {00113}, Eclipse -[4,07], {00479}, Prism -[4,08], {00000}, UNUSED -[4,09], {00973}, Eclipse -[4,10], {00705}, Orion -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00403}, Polaris -[5,04], {00943}, Spectrum -[5,05], {00211}, Sol -[5,06], {00603}, Tectonic -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00405}, Aero -[5,10], {00165}, Ember -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00473}, Velocity -[6,04], {00650}, Blaze -[6,05], {00368}, Phoenix -[6,06], {00812}, Tesla -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00746}, Meteor -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00493}, Tesla -[7,05], {00000}, UNUSED -[7,06], {00830}, Glider -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00359}, Horizon -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/53Containers.txt b/53Containers.txt deleted file mode 100644 index efeb6c9..0000000 --- a/53Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00516}, Eclipse -[1,02], {00457}, Apollo -[1,03], {00727}, Nexus -[1,04], {00529}, Zephyr -[1,05], {00737}, Tectonic -[1,06], {00218}, Voyager -[1,07], {00180}, Blaze -[1,08], {00855}, Odyssey -[1,09], {00659}, Solstice -[1,10], {00619}, Beacon -[1,11], {00322}, Spectrum -[2,01], {00331}, Aurora -[2,02], {00324}, Vortex -[2,03], {00607}, Borealis -[2,04], {00868}, Cyclone -[2,05], {00345}, Polaris -[2,06], {00195}, Gravity -[2,07], {00552}, Sol -[2,08], {00425}, Polaris -[2,09], {00905}, Zenith -[2,10], {00294}, Polaris -[2,11], {00200}, Blaze -[3,01], {00561}, Comet -[3,02], {00142}, Infinity -[3,03], {00719}, Inferno -[3,04], {00818}, Apollo -[3,05], {00000}, UNUSED -[3,06], {00304}, Vertex -[3,07], {00347}, Comet -[3,08], {00313}, Nimbus -[3,09], {00897}, Odyssey -[3,10], {00586}, Meteor -[3,11], {00782}, Velocity -[4,01], {00334}, Infinity -[4,02], {00502}, Apollo -[4,03], {00747}, Halo -[4,04], {00314}, Halo -[4,05], {00000}, UNUSED -[4,06], {00641}, Arcadia -[4,07], {00996}, Cyclone -[4,08], {00989}, Spectrum -[4,09], {00556}, Nova -[4,10], {00321}, Blaze -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00906}, Glacier -[5,03], {00296}, Lunar -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00122}, Echo -[5,08], {00118}, Twilight -[5,09], {00469}, Velocity -[5,10], {00287}, Spectrum -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00471}, Nova -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00635}, Polaris -[6,08], {00296}, Twilight -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00206}, Atlas -[7,08], {00929}, Sol -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00412}, Eclipse -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/54Containers.txt b/54Containers.txt deleted file mode 100644 index 1b66f9e..0000000 --- a/54Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00416}, Polaris -[1,02], {00743}, Meteor -[1,03], {00919}, Forge -[1,04], {00370}, Stardust -[1,05], {00176}, Inferno -[1,06], {00312}, Velocity -[1,07], {00293}, Stardust -[1,08], {00452}, Titan -[1,09], {00830}, Zenith -[1,10], {00734}, Halo -[1,11], {00992}, Cosmos -[2,01], {00622}, Shadow -[2,02], {00639}, Echo -[2,03], {00404}, Drift -[2,04], {00130}, Eclipse -[2,05], {00812}, Gravity -[2,06], {00599}, Eclipse -[2,07], {00328}, Halo -[2,08], {00837}, Spectrum -[2,09], {00636}, Neptune -[2,10], {00195}, Inferno -[2,11], {00000}, UNUSED -[3,01], {00216}, Inferno -[3,02], {00292}, Comet -[3,03], {00464}, Arcadia -[3,04], {00161}, Nova -[3,05], {00471}, Nimbus -[3,06], {00321}, Tesla -[3,07], {00142}, Atlas -[3,08], {00707}, Tesla -[3,09], {00106}, Orion -[3,10], {00863}, Forge -[3,11], {00000}, UNUSED -[4,01], {00829}, Zenith -[4,02], {00688}, Inferno -[4,03], {00615}, Nova -[4,04], {00580}, Polaris -[4,05], {00377}, Twilight -[4,06], {00990}, Quantum -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00959}, Borealis -[4,10], {00809}, Echo -[4,11], {00000}, UNUSED -[5,01], {00202}, Spectrum -[5,02], {00403}, Velocity -[5,03], {00866}, Phoenix -[5,04], {00928}, Zenith -[5,05], {00000}, UNUSED -[5,06], {00359}, Infinity -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00513}, Prism -[5,11], {00000}, UNUSED -[6,01], {00333}, Blaze -[6,02], {00148}, Everest -[6,03], {00000}, UNUSED -[6,04], {00824}, Zephyr -[6,05], {00000}, UNUSED -[6,06], {00173}, Solstice -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00321}, Vortex -[7,02], {00553}, Zenith -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00102}, Zenith -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00569}, Spectrum -[8,02], {00283}, Glacier -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/55Containers.txt b/55Containers.txt deleted file mode 100644 index 038861e..0000000 --- a/55Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00651}, Eclipse -[1,02], {00638}, Spectrum -[1,03], {00540}, Polaris -[1,04], {00244}, Crystal -[1,05], {00136}, Echo -[1,06], {00965}, Nimbus -[1,07], {00769}, Quantum -[1,08], {00843}, Forge -[1,09], {00256}, Vortex -[1,10], {00596}, Echo -[1,11], {00633}, Phoenix -[2,01], {00274}, Echo -[2,02], {00604}, Cosmos -[2,03], {00255}, Infinity -[2,04], {00184}, Cyclone -[2,05], {00000}, UNUSED -[2,06], {00210}, Neptune -[2,07], {00743}, Radiance -[2,08], {00517}, Mirage -[2,09], {00927}, Nexus -[2,10], {00964}, Quantum -[2,11], {00932}, Prism -[3,01], {00555}, Comet -[3,02], {00897}, Echo -[3,03], {00226}, Quantum -[3,04], {00515}, Zenith -[3,05], {00000}, UNUSED -[3,06], {00212}, Zephyr -[3,07], {00899}, Halo -[3,08], {00395}, Ember -[3,09], {00507}, Prism -[3,10], {00363}, Circuit -[3,11], {00354}, Cascade -[4,01], {00170}, Glider -[4,02], {00000}, UNUSED -[4,03], {00418}, Inferno -[4,04], {00304}, Vortex -[4,05], {00000}, UNUSED -[4,06], {00868}, Borealis -[4,07], {00000}, UNUSED -[4,08], {00212}, Circuit -[4,09], {00254}, Vortex -[4,10], {00968}, Apollo -[4,11], {00653}, Velocity -[5,01], {00628}, Echo -[5,02], {00000}, UNUSED -[5,03], {00732}, Velocity -[5,04], {00928}, Matrix -[5,05], {00000}, UNUSED -[5,06], {00487}, Sol -[5,07], {00000}, UNUSED -[5,08], {00669}, Zenith -[5,09], {00553}, Zenith -[5,10], {00348}, Beacon -[5,11], {00260}, Tectonic -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00978}, Atlas -[6,04], {00215}, Horizon -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00413}, Atlas -[6,10], {00000}, UNUSED -[6,11], {00637}, Infinity -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00660}, Orion -[7,04], {00652}, Atlas -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00746}, Radiance -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00448}, Nexus -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/56Containers.txt b/56Containers.txt deleted file mode 100644 index 9ce8696..0000000 --- a/56Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00643}, Titan -[1,02], {00968}, Zenith -[1,03], {00145}, Zenith -[1,04], {00911}, Quantum -[1,05], {00919}, Orion -[1,06], {00509}, Drift -[1,07], {00367}, Blaze -[1,08], {00786}, Spectrum -[1,09], {00822}, Meteor -[1,10], {00455}, Crystal -[1,11], {00749}, Shadow -[2,01], {00719}, Vertex -[2,02], {00367}, Vertex -[2,03], {00144}, Cascade -[2,04], {00500}, Prism -[2,05], {00243}, Matrix -[2,06], {00540}, Glacier -[2,07], {00683}, Spectrum -[2,08], {00257}, Glacier -[2,09], {00649}, Nova -[2,10], {00407}, Crystal -[2,11], {00582}, Sol -[3,01], {00897}, Borealis -[3,02], {00910}, Horizon -[3,03], {00440}, Apollo -[3,04], {00000}, UNUSED -[3,05], {00252}, Blaze -[3,06], {00645}, Beacon -[3,07], {00268}, Spectrum -[3,08], {00723}, Zephyr -[3,09], {00101}, Spectrum -[3,10], {00673}, Nimbus -[3,11], {00000}, UNUSED -[4,01], {00365}, Zenith -[4,02], {00751}, Apollo -[4,03], {00217}, Arcadia -[4,04], {00000}, UNUSED -[4,05], {00599}, Gravity -[4,06], {00912}, Apollo -[4,07], {00925}, Aurora -[4,08], {00132}, Atlas -[4,09], {00832}, Zenith -[4,10], {00781}, Cosmos -[4,11], {00000}, UNUSED -[5,01], {00830}, Phoenix -[5,02], {00992}, Lunar -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00429}, Prism -[5,06], {00874}, Spectrum -[5,07], {00000}, UNUSED -[5,08], {00308}, Polaris -[5,09], {00000}, UNUSED -[5,10], {00984}, Nova -[5,11], {00000}, UNUSED -[6,01], {00382}, Eclipse -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00249}, Borealis -[6,06], {00530}, Nova -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00946}, Orion -[6,11], {00000}, UNUSED -[7,01], {00723}, Glacier -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00222}, Orion -[7,06], {00980}, Nova -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00861}, Velocity -[7,11], {00000}, UNUSED -[8,01], {00556}, Tesla -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00539}, Vertex -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/57Containers.txt b/57Containers.txt deleted file mode 100644 index e5069c2..0000000 --- a/57Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00512}, Radiance -[1,02], {00835}, Dynamo -[1,03], {00957}, Singularity -[1,04], {00923}, Velocity -[1,05], {00443}, Blaze -[1,06], {00403}, Neptune -[1,07], {00723}, Everest -[1,08], {00777}, Drift -[1,09], {00382}, Quantum -[1,10], {00553}, Everest -[1,11], {00109}, Vertex -[2,01], {00457}, Prism -[2,02], {00325}, Tectonic -[2,03], {00139}, Orion -[2,04], {00881}, Tectonic -[2,05], {00488}, Stardust -[2,06], {00640}, Shard -[2,07], {00635}, Comet -[2,08], {00864}, Arcadia -[2,09], {00751}, Circuit -[2,10], {00461}, Blaze -[2,11], {00979}, Glacier -[3,01], {00934}, Orion -[3,02], {00159}, Titan -[3,03], {00916}, Crystal -[3,04], {00207}, Singularity -[3,05], {00957}, Shard -[3,06], {00305}, Glider -[3,07], {00635}, Cascade -[3,08], {00000}, UNUSED -[3,09], {00517}, Nova -[3,10], {00780}, Comet -[3,11], {00475}, Zenith -[4,01], {00000}, UNUSED -[4,02], {00857}, Atlas -[4,03], {00500}, Matrix -[4,04], {00759}, Circuit -[4,05], {00683}, Gravity -[4,06], {00176}, Echo -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00868}, Vortex -[4,10], {00217}, Ember -[4,11], {00801}, Shard -[5,01], {00000}, UNUSED -[5,02], {00826}, Apollo -[5,03], {00182}, Quantum -[5,04], {00513}, Nexus -[5,05], {00893}, Horizon -[5,06], {00941}, Ember -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00952}, Aero -[5,11], {00597}, Zenith -[6,01], {00000}, UNUSED -[6,02], {00278}, Glacier -[6,03], {00824}, Forge -[6,04], {00000}, UNUSED -[6,05], {00336}, Aurora -[6,06], {00177}, Beacon -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00402}, Nimbus -[6,11], {00434}, Singularity -[7,01], {00000}, UNUSED -[7,02], {00831}, Vortex -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00602}, Lunar -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00479}, Blaze -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00172}, Radiance -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/58Containers.txt b/58Containers.txt deleted file mode 100644 index 5733ac5..0000000 --- a/58Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00858}, Nexus -[1,02], {00889}, Circuit -[1,03], {00700}, Voyager -[1,04], {00745}, Everest -[1,05], {00505}, Aero -[1,06], {00460}, Echo -[1,07], {00613}, Eclipse -[1,08], {00748}, Radiance -[1,09], {00387}, Aero -[1,10], {00871}, Axis -[1,11], {00305}, Drift -[2,01], {00354}, Gravity -[2,02], {00184}, Shadow -[2,03], {00598}, Zenith -[2,04], {00596}, Glacier -[2,05], {00228}, Matrix -[2,06], {00684}, Cyclone -[2,07], {00261}, Halo -[2,08], {00751}, Infinity -[2,09], {00357}, Inferno -[2,10], {00712}, Infinity -[2,11], {00397}, Nexus -[3,01], {00516}, Blaze -[3,02], {00425}, Neptune -[3,03], {00427}, Solstice -[3,04], {00818}, Odyssey -[3,05], {00358}, Mirage -[3,06], {00455}, Sol -[3,07], {00306}, Vertex -[3,08], {00986}, Ember -[3,09], {00247}, Lunar -[3,10], {00194}, Quantum -[3,11], {00438}, Nova -[4,01], {00135}, Quantum -[4,02], {00000}, UNUSED -[4,03], {00676}, Vortex -[4,04], {00461}, Spectrum -[4,05], {00573}, Inferno -[4,06], {00000}, UNUSED -[4,07], {00617}, Glacier -[4,08], {00459}, Cosmos -[4,09], {00413}, Vertex -[4,10], {00285}, Echo -[4,11], {00356}, Forge -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00882}, Dynamo -[5,04], {00382}, Echo -[5,05], {00571}, Vertex -[5,06], {00000}, UNUSED -[5,07], {00620}, Meteor -[5,08], {00000}, UNUSED -[5,09], {00677}, Everest -[5,10], {00426}, Zenith -[5,11], {00349}, Prism -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00325}, Zephyr -[6,04], {00885}, Solstice -[6,05], {00159}, Cascade -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00826}, Cascade -[6,11], {00784}, Shadow -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00953}, Nimbus -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00276}, Voyager -[7,11], {00685}, Inferno -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00281}, Echo -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/59Containers.txt b/59Containers.txt deleted file mode 100644 index 20c200e..0000000 --- a/59Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00483}, Spectrum -[1,02], {00558}, Twilight -[1,03], {00505}, Axis -[1,04], {00959}, Comet -[1,05], {00853}, Everest -[1,06], {00278}, Titan -[1,07], {00676}, Orion -[1,08], {00451}, Inferno -[1,09], {00912}, Neptune -[1,10], {00111}, Comet -[1,11], {00198}, Borealis -[2,01], {00199}, Spectrum -[2,02], {00454}, Polaris -[2,03], {00257}, Sol -[2,04], {00229}, Zenith -[2,05], {00401}, Beacon -[2,06], {00999}, Orion -[2,07], {00361}, Spectrum -[2,08], {00825}, Singularity -[2,09], {00407}, Nova -[2,10], {00642}, Cosmos -[2,11], {00745}, Echo -[3,01], {00684}, Meteor -[3,02], {00136}, Apollo -[3,03], {00674}, Horizon -[3,04], {00578}, Aurora -[3,05], {00620}, Quantum -[3,06], {00419}, Everest -[3,07], {00179}, Circuit -[3,08], {00256}, Velocity -[3,09], {00520}, Glacier -[3,10], {00429}, Spectrum -[3,11], {00358}, Borealis -[4,01], {00000}, UNUSED -[4,02], {00686}, Twilight -[4,03], {00655}, Orion -[4,04], {00980}, Spectrum -[4,05], {00280}, Crystal -[4,06], {00263}, Comet -[4,07], {00000}, UNUSED -[4,08], {00125}, Cascade -[4,09], {00509}, Infinity -[4,10], {00154}, Aurora -[4,11], {00267}, Solstice -[5,01], {00000}, UNUSED -[5,02], {00404}, Arcadia -[5,03], {00000}, UNUSED -[5,04], {00447}, Polaris -[5,05], {00000}, UNUSED -[5,06], {00397}, Odyssey -[5,07], {00000}, UNUSED -[5,08], {00241}, Twilight -[5,09], {00644}, Spectrum -[5,10], {00317}, Solstice -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00564}, Drift -[6,03], {00000}, UNUSED -[6,04], {00507}, Sol -[6,05], {00000}, UNUSED -[6,06], {00324}, Borealis -[6,07], {00000}, UNUSED -[6,08], {00765}, Titan -[6,09], {00917}, Voyager -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00837}, Polaris -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00886}, Echo -[7,09], {00538}, Radiance -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00858}, Tectonic -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00608}, Velocity -[8,09], {00789}, Lunar -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/60Containers.txt b/60Containers.txt deleted file mode 100644 index 9ac1746..0000000 --- a/60Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00288}, Lunar -[1,02], {00910}, Arcadia -[1,03], {00822}, Comet -[1,04], {00579}, Zenith -[1,05], {00641}, Odyssey -[1,06], {00916}, Odyssey -[1,07], {00206}, Shadow -[1,08], {00758}, Aurora -[1,09], {00653}, Radiance -[1,10], {00702}, Vortex -[1,11], {00986}, Halo -[2,01], {00149}, Eclipse -[2,02], {00000}, UNUSED -[2,03], {00597}, Zenith -[2,04], {00494}, Radiance -[2,05], {00777}, Blaze -[2,06], {00317}, Eclipse -[2,07], {00391}, Shard -[2,08], {00326}, Vertex -[2,09], {00748}, Cyclone -[2,10], {00952}, Vertex -[2,11], {00642}, Drift -[3,01], {00545}, Aurora -[3,02], {00000}, UNUSED -[3,03], {00613}, Solstice -[3,04], {00732}, Twilight -[3,05], {00358}, Forge -[3,06], {00445}, Borealis -[3,07], {00351}, Ember -[3,08], {00805}, Lunar -[3,09], {00557}, Borealis -[3,10], {00431}, Tesla -[3,11], {00774}, Cyclone -[4,01], {00479}, Tesla -[4,02], {00000}, UNUSED -[4,03], {00170}, Horizon -[4,04], {00951}, Nova -[4,05], {00934}, Tectonic -[4,06], {00319}, Aurora -[4,07], {00137}, Circuit -[4,08], {00000}, UNUSED -[4,09], {00486}, Velocity -[4,10], {00375}, Forge -[4,11], {00000}, UNUSED -[5,01], {00432}, Borealis -[5,02], {00000}, UNUSED -[5,03], {00938}, Spectrum -[5,04], {00518}, Cosmos -[5,05], {00768}, Zephyr -[5,06], {00357}, Horizon -[5,07], {00287}, Zenith -[5,08], {00000}, UNUSED -[5,09], {00238}, Singularity -[5,10], {00566}, Inferno -[5,11], {00000}, UNUSED -[6,01], {00968}, Nova -[6,02], {00000}, UNUSED -[6,03], {00897}, Nimbus -[6,04], {00905}, Meteor -[6,05], {00733}, Axis -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00756}, Shard -[6,10], {00605}, Nexus -[6,11], {00000}, UNUSED -[7,01], {00294}, Echo -[7,02], {00000}, UNUSED -[7,03], {00998}, Everest -[7,04], {00000}, UNUSED -[7,05], {00558}, Beacon -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00835}, Shard -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00198}, Tectonic -[8,04], {00000}, UNUSED -[8,05], {00156}, Crystal -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00541}, Singularity -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/61Containers.txt b/61Containers.txt deleted file mode 100644 index 34ac3b0..0000000 --- a/61Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00613}, Eclipse -[1,02], {00666}, Quantum -[1,03], {00303}, Tesla -[1,04], {00802}, Mirage -[1,05], {00374}, Shadow -[1,06], {00188}, Zenith -[1,07], {00261}, Solstice -[1,08], {00690}, Axis -[1,09], {00744}, Atlas -[1,10], {00493}, Mirage -[1,11], {00401}, Atlas -[2,01], {00283}, Twilight -[2,02], {00464}, Odyssey -[2,03], {00996}, Glider -[2,04], {00751}, Spectrum -[2,05], {00746}, Spectrum -[2,06], {00137}, Matrix -[2,07], {00659}, Dynamo -[2,08], {00165}, Zenith -[2,09], {00723}, Shadow -[2,10], {00487}, Shadow -[2,11], {00907}, Spectrum -[3,01], {00718}, Circuit -[3,02], {00731}, Velocity -[3,03], {00104}, Crystal -[3,04], {00657}, Nimbus -[3,05], {00249}, Shard -[3,06], {00887}, Phoenix -[3,07], {00221}, Velocity -[3,08], {00693}, Eclipse -[3,09], {00000}, UNUSED -[3,10], {00387}, Glider -[3,11], {00872}, Echo -[4,01], {00328}, Eclipse -[4,02], {00328}, Infinity -[4,03], {00914}, Voyager -[4,04], {00183}, Solstice -[4,05], {00631}, Spectrum -[4,06], {00754}, Polaris -[4,07], {00649}, Eclipse -[4,08], {00699}, Zenith -[4,09], {00000}, UNUSED -[4,10], {00307}, Sol -[4,11], {00199}, Zephyr -[5,01], {00000}, UNUSED -[5,02], {00809}, Everest -[5,03], {00118}, Cyclone -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00821}, Apollo -[5,07], {00100}, Solstice -[5,08], {00389}, Velocity -[5,09], {00000}, UNUSED -[5,10], {00405}, Phoenix -[5,11], {00958}, Gravity -[6,01], {00000}, UNUSED -[6,02], {00797}, Mirage -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00376}, Mirage -[6,07], {00439}, Gravity -[6,08], {00294}, Horizon -[6,09], {00000}, UNUSED -[6,10], {00632}, Mirage -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00869}, Aero -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00729}, Lunar -[7,08], {00540}, Arcadia -[7,09], {00000}, UNUSED -[7,10], {00245}, Stardust -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00705}, Infinity -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00997}, Crystal -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00951}, Vertex -[8,11], {00000}, UNUSED diff --git a/62Containers.txt b/62Containers.txt deleted file mode 100644 index 601370a..0000000 --- a/62Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00562}, Zenith -[1,02], {00939}, Beacon -[1,03], {00349}, Neptune -[1,04], {00442}, Drift -[1,05], {00588}, Spectrum -[1,06], {00185}, Neptune -[1,07], {00549}, Tesla -[1,08], {00249}, Zephyr -[1,09], {00162}, Borealis -[1,10], {00210}, Velocity -[1,11], {00654}, Singularity -[2,01], {00683}, Velocity -[2,02], {00959}, Nimbus -[2,03], {00278}, Voyager -[2,04], {00926}, Twilight -[2,05], {00122}, Everest -[2,06], {00513}, Shadow -[2,07], {00625}, Odyssey -[2,08], {00810}, Glider -[2,09], {00398}, Crystal -[2,10], {00975}, Comet -[2,11], {00342}, Apollo -[3,01], {00834}, Singularity -[3,02], {00933}, Neptune -[3,03], {00585}, Tectonic -[3,04], {00149}, Velocity -[3,05], {00903}, Voyager -[3,06], {00669}, Arcadia -[3,07], {00618}, Horizon -[3,08], {00760}, Horizon -[3,09], {00962}, Borealis -[3,10], {00929}, Atlas -[3,11], {00145}, Mirage -[4,01], {00427}, Vertex -[4,02], {00430}, Axis -[4,03], {00175}, Spectrum -[4,04], {00342}, Velocity -[4,05], {00361}, Twilight -[4,06], {00909}, Stardust -[4,07], {00966}, Aero -[4,08], {00992}, Echo -[4,09], {00380}, Prism -[4,10], {00591}, Shard -[4,11], {00903}, Axis -[5,01], {00124}, Zephyr -[5,02], {00818}, Cosmos -[5,03], {00494}, Cyclone -[5,04], {00117}, Horizon -[5,05], {00423}, Drift -[5,06], {00000}, UNUSED -[5,07], {00281}, Titan -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00751}, Vertex -[6,01], {00000}, UNUSED -[6,02], {00786}, Prism -[6,03], {00436}, Twilight -[6,04], {00611}, Neptune -[6,05], {00644}, Twilight -[6,06], {00000}, UNUSED -[6,07], {00861}, Spectrum -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00752}, Sol -[7,01], {00000}, UNUSED -[7,02], {00954}, Singularity -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00978}, Titan -[7,06], {00000}, UNUSED -[7,07], {00475}, Shard -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00335}, Meteor -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00793}, Singularity -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/63Containers.txt b/63Containers.txt deleted file mode 100644 index 977ff09..0000000 --- a/63Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00377}, Vertex -[1,02], {00671}, Vertex -[1,03], {00704}, Mirage -[1,04], {00767}, Eclipse -[1,05], {00872}, Neptune -[1,06], {00781}, Arcadia -[1,07], {00661}, Polaris -[1,08], {00887}, Everest -[1,09], {00997}, Shadow -[1,10], {00415}, Cascade -[1,11], {00249}, Shard -[2,01], {00865}, Apollo -[2,02], {00635}, Spectrum -[2,03], {00730}, Singularity -[2,04], {00193}, Horizon -[2,05], {00781}, Horizon -[2,06], {00000}, UNUSED -[2,07], {00239}, Nexus -[2,08], {00543}, Eclipse -[2,09], {00610}, Echo -[2,10], {00705}, Borealis -[2,11], {00773}, Cyclone -[3,01], {00635}, Quantum -[3,02], {00158}, Tesla -[3,03], {00328}, Tectonic -[3,04], {00598}, Vertex -[3,05], {00443}, Solstice -[3,06], {00000}, UNUSED -[3,07], {00959}, Atlas -[3,08], {00219}, Matrix -[3,09], {00159}, Spectrum -[3,10], {00808}, Stardust -[3,11], {00351}, Nimbus -[4,01], {00121}, Cascade -[4,02], {00749}, Sol -[4,03], {00284}, Gravity -[4,04], {00688}, Radiance -[4,05], {00419}, Velocity -[4,06], {00000}, UNUSED -[4,07], {00522}, Spectrum -[4,08], {00284}, Zenith -[4,09], {00262}, Axis -[4,10], {00129}, Aurora -[4,11], {00379}, Polaris -[5,01], {00489}, Phoenix -[5,02], {00303}, Halo -[5,03], {00935}, Vortex -[5,04], {00161}, Singularity -[5,05], {00897}, Cyclone -[5,06], {00000}, UNUSED -[5,07], {00416}, Echo -[5,08], {00968}, Echo -[5,09], {00000}, UNUSED -[5,10], {00268}, Vertex -[5,11], {00707}, Drift -[6,01], {00638}, Echo -[6,02], {00000}, UNUSED -[6,03], {00937}, Borealis -[6,04], {00862}, Arcadia -[6,05], {00315}, Radiance -[6,06], {00000}, UNUSED -[6,07], {00479}, Sol -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00427}, Shard -[6,11], {00763}, Mirage -[7,01], {00745}, Inferno -[7,02], {00000}, UNUSED -[7,03], {00981}, Velocity -[7,04], {00000}, UNUSED -[7,05], {00931}, Ember -[7,06], {00000}, UNUSED -[7,07], {00458}, Crystal -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00461}, Nova -[8,06], {00000}, UNUSED -[8,07], {00942}, Lunar -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/64Containers.txt b/64Containers.txt deleted file mode 100644 index 3cfd2f2..0000000 --- a/64Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00148}, Aero -[1,02], {00759}, Aero -[1,03], {00968}, Eclipse -[1,04], {00248}, Drift -[1,05], {00901}, Eclipse -[1,06], {00460}, Zephyr -[1,07], {00486}, Spectrum -[1,08], {00298}, Shadow -[1,09], {00775}, Everest -[1,10], {00389}, Vertex -[1,11], {00789}, Cyclone -[2,01], {00156}, Stardust -[2,02], {00902}, Velocity -[2,03], {00129}, Twilight -[2,04], {00751}, Tectonic -[2,05], {00803}, Circuit -[2,06], {00114}, Sol -[2,07], {00877}, Spectrum -[2,08], {00565}, Velocity -[2,09], {00771}, Forge -[2,10], {00947}, Vertex -[2,11], {00372}, Tectonic -[3,01], {00694}, Apollo -[3,02], {00770}, Glacier -[3,03], {00204}, Vertex -[3,04], {00626}, Prism -[3,05], {00943}, Atlas -[3,06], {00226}, Drift -[3,07], {00568}, Nexus -[3,08], {00780}, Spectrum -[3,09], {00710}, Vertex -[3,10], {00870}, Titan -[3,11], {00640}, Spectrum -[4,01], {00406}, Glider -[4,02], {00563}, Shadow -[4,03], {00000}, UNUSED -[4,04], {00957}, Cosmos -[4,05], {00939}, Zephyr -[4,06], {00824}, Ember -[4,07], {00576}, Arcadia -[4,08], {00951}, Voyager -[4,09], {00263}, Titan -[4,10], {00158}, Nova -[4,11], {00765}, Vortex -[5,01], {00000}, UNUSED -[5,02], {00396}, Glider -[5,03], {00000}, UNUSED -[5,04], {00718}, Horizon -[5,05], {00950}, Eclipse -[5,06], {00547}, Shadow -[5,07], {00765}, Comet -[5,08], {00973}, Velocity -[5,09], {00432}, Zenith -[5,10], {00000}, UNUSED -[5,11], {00621}, Atlas -[6,01], {00000}, UNUSED -[6,02], {00430}, Vertex -[6,03], {00000}, UNUSED -[6,04], {00524}, Halo -[6,05], {00218}, Circuit -[6,06], {00329}, Shard -[6,07], {00000}, UNUSED -[6,08], {00453}, Comet -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00373}, Odyssey -[7,01], {00000}, UNUSED -[7,02], {00338}, Horizon -[7,03], {00000}, UNUSED -[7,04], {00403}, Glider -[7,05], {00214}, Arcadia -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00992}, Infinity -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00253}, Cosmos -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00307}, Voyager -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00558}, Borealis diff --git a/65Containers.txt b/65Containers.txt deleted file mode 100644 index 8f7df3d..0000000 --- a/65Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00323}, Cascade -[1,02], {00616}, Glacier -[1,03], {00262}, Prism -[1,04], {00195}, Velocity -[1,05], {00691}, Circuit -[1,06], {00751}, Spectrum -[1,07], {00245}, Voyager -[1,08], {00384}, Velocity -[1,09], {00717}, Radiance -[1,10], {00515}, Velocity -[1,11], {00405}, Echo -[2,01], {00913}, Ember -[2,02], {00273}, Circuit -[2,03], {00249}, Shard -[2,04], {00612}, Spectrum -[2,05], {00959}, Prism -[2,06], {00737}, Nimbus -[2,07], {00900}, Cascade -[2,08], {00791}, Crystal -[2,09], {00810}, Orion -[2,10], {00226}, Dynamo -[2,11], {00610}, Echo -[3,01], {00694}, Polaris -[3,02], {00910}, Forge -[3,03], {00437}, Glider -[3,04], {00190}, Glacier -[3,05], {00807}, Eclipse -[3,06], {00776}, Horizon -[3,07], {00810}, Nova -[3,08], {00158}, Forge -[3,09], {00957}, Dynamo -[3,10], {00675}, Orion -[3,11], {00808}, Titan -[4,01], {00266}, Mirage -[4,02], {00505}, Horizon -[4,03], {00334}, Horizon -[4,04], {00712}, Circuit -[4,05], {00417}, Spectrum -[4,06], {00766}, Infinity -[4,07], {00682}, Beacon -[4,08], {00000}, UNUSED -[4,09], {00747}, Blaze -[4,10], {00632}, Mirage -[4,11], {00721}, Zenith -[5,01], {00191}, Spectrum -[5,02], {00143}, Velocity -[5,03], {00955}, Vertex -[5,04], {00197}, Meteor -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00977}, Sol -[5,08], {00000}, UNUSED -[5,09], {00807}, Nexus -[5,10], {00303}, Glider -[5,11], {00568}, Spectrum -[6,01], {00364}, Circuit -[6,02], {00601}, Odyssey -[6,03], {00389}, Velocity -[6,04], {00701}, Twilight -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00730}, Singularity -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00107}, Horizon -[6,11], {00000}, UNUSED -[7,01], {00315}, Horizon -[7,02], {00108}, Borealis -[7,03], {00000}, UNUSED -[7,04], {00949}, Velocity -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00593}, Velocity -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00916}, Borealis -[7,11], {00000}, UNUSED -[8,01], {00352}, Comet -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00969}, Ember -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00997}, Halo -[8,11], {00000}, UNUSED diff --git a/66Containers.txt b/66Containers.txt deleted file mode 100644 index fa4121c..0000000 --- a/66Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00377}, Circuit -[1,02], {00255}, Neptune -[1,03], {00590}, Spectrum -[1,04], {00341}, Beacon -[1,05], {00228}, Aero -[1,06], {00949}, Phoenix -[1,07], {00968}, Zephyr -[1,08], {00855}, Velocity -[1,09], {00200}, Cascade -[1,10], {00556}, Horizon -[1,11], {00355}, Spectrum -[2,01], {00963}, Twilight -[2,02], {00823}, Meteor -[2,03], {00651}, Glider -[2,04], {00389}, Mirage -[2,05], {00465}, Orion -[2,06], {00496}, Velocity -[2,07], {00836}, Spectrum -[2,08], {00593}, Echo -[2,09], {00316}, Aero -[2,10], {00245}, Blaze -[2,11], {00697}, Eclipse -[3,01], {00982}, Horizon -[3,02], {00152}, Twilight -[3,03], {00806}, Tesla -[3,04], {00742}, Horizon -[3,05], {00106}, Orion -[3,06], {00741}, Singularity -[3,07], {00676}, Gravity -[3,08], {00955}, Spectrum -[3,09], {00284}, Aero -[3,10], {00992}, Odyssey -[3,11], {00274}, Spectrum -[4,01], {00788}, Cascade -[4,02], {00410}, Matrix -[4,03], {00920}, Nova -[4,04], {00197}, Aurora -[4,05], {00341}, Odyssey -[4,06], {00742}, Zenith -[4,07], {00800}, Echo -[4,08], {00933}, Singularity -[4,09], {00127}, Aero -[4,10], {00129}, Beacon -[4,11], {00231}, Twilight -[5,01], {00807}, Vertex -[5,02], {00948}, Quantum -[5,03], {00714}, Spectrum -[5,04], {00900}, Phoenix -[5,05], {00353}, Inferno -[5,06], {00493}, Comet -[5,07], {00712}, Meteor -[5,08], {00626}, Velocity -[5,09], {00293}, Circuit -[5,10], {00582}, Beacon -[5,11], {00836}, Zenith -[6,01], {00704}, Neptune -[6,02], {00000}, UNUSED -[6,03], {00283}, Apollo -[6,04], {00000}, UNUSED -[6,05], {00461}, Vertex -[6,06], {00596}, Drift -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00909}, Velocity -[7,01], {00644}, Lunar -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00503}, Twilight -[7,06], {00714}, Spectrum -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00782}, Solstice -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00431}, Cyclone -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00324}, Singularity diff --git a/67Containers.txt b/67Containers.txt deleted file mode 100644 index 03073e4..0000000 --- a/67Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00868}, Nimbus -[1,02], {00137}, Drift -[1,03], {00537}, Vertex -[1,04], {00893}, Quantum -[1,05], {00999}, Spectrum -[1,06], {00279}, Eclipse -[1,07], {00474}, Comet -[1,08], {00411}, Nimbus -[1,09], {00914}, Glacier -[1,10], {00448}, Ember -[1,11], {00681}, Cyclone -[2,01], {00564}, Echo -[2,02], {00273}, Tectonic -[2,03], {00446}, Gravity -[2,04], {00727}, Cosmos -[2,05], {00664}, Atlas -[2,06], {00988}, Aero -[2,07], {00259}, Apollo -[2,08], {00851}, Dynamo -[2,09], {00338}, Matrix -[2,10], {00520}, Titan -[2,11], {00000}, UNUSED -[3,01], {00673}, Vortex -[3,02], {00184}, Crystal -[3,03], {00713}, Zephyr -[3,04], {00699}, Vortex -[3,05], {00187}, Orion -[3,06], {00146}, Velocity -[3,07], {00151}, Zenith -[3,08], {00578}, Spectrum -[3,09], {00802}, Glacier -[3,10], {00000}, UNUSED -[3,11], {00000}, UNUSED -[4,01], {00532}, Horizon -[4,02], {00687}, Inferno -[4,03], {00136}, Nova -[4,04], {00248}, Vertex -[4,05], {00377}, Radiance -[4,06], {00634}, Everest -[4,07], {00392}, Beacon -[4,08], {00701}, Vortex -[4,09], {00800}, Zephyr -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00493}, Spectrum -[5,02], {00147}, Twilight -[5,03], {00112}, Eclipse -[5,04], {00828}, Twilight -[5,05], {00724}, Zephyr -[5,06], {00854}, Horizon -[5,07], {00904}, Spectrum -[5,08], {00148}, Infinity -[5,09], {00845}, Glider -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00708}, Prism -[6,02], {00854}, Titan -[6,03], {00881}, Singularity -[6,04], {00000}, UNUSED -[6,05], {00124}, Twilight -[6,06], {00872}, Tectonic -[6,07], {00951}, Cosmos -[6,08], {00424}, Drift -[6,09], {00490}, Odyssey -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00493}, Shadow -[7,02], {00475}, Vertex -[7,03], {00611}, Vortex -[7,04], {00000}, UNUSED -[7,05], {00378}, Zenith -[7,06], {00787}, Glacier -[7,07], {00527}, Drift -[7,08], {00894}, Nimbus -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00430}, Velocity -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00159}, Tectonic -[8,06], {00414}, Cyclone -[8,07], {00000}, UNUSED -[8,08], {00548}, Zenith -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/68Containers.txt b/68Containers.txt deleted file mode 100644 index 3898ce0..0000000 --- a/68Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00472}, Circuit -[1,02], {00854}, Shard -[1,03], {00706}, Glacier -[1,04], {00641}, Nexus -[1,05], {00455}, Zephyr -[1,06], {00525}, Orion -[1,07], {00698}, Circuit -[1,08], {00869}, Eclipse -[1,09], {00970}, Horizon -[1,10], {00360}, Sol -[1,11], {00514}, Mirage -[2,01], {00455}, Comet -[2,02], {00234}, Forge -[2,03], {00200}, Axis -[2,04], {00386}, Zenith -[2,05], {00716}, Apollo -[2,06], {00599}, Orion -[2,07], {00440}, Zenith -[2,08], {00971}, Cyclone -[2,09], {00322}, Spectrum -[2,10], {00288}, Eclipse -[2,11], {00000}, UNUSED -[3,01], {00543}, Tectonic -[3,02], {00554}, Shadow -[3,03], {00934}, Solstice -[3,04], {00253}, Tectonic -[3,05], {00958}, Vortex -[3,06], {00619}, Infinity -[3,07], {00524}, Shadow -[3,08], {00688}, Nexus -[3,09], {00471}, Nova -[3,10], {00108}, Lunar -[3,11], {00000}, UNUSED -[4,01], {00309}, Beacon -[4,02], {00683}, Nimbus -[4,03], {00194}, Glacier -[4,04], {00425}, Spectrum -[4,05], {00604}, Aero -[4,06], {00591}, Twilight -[4,07], {00216}, Blaze -[4,08], {00157}, Horizon -[4,09], {00515}, Prism -[4,10], {00437}, Solstice -[4,11], {00000}, UNUSED -[5,01], {00501}, Aurora -[5,02], {00566}, Tectonic -[5,03], {00685}, Singularity -[5,04], {00481}, Solstice -[5,05], {00461}, Mirage -[5,06], {00689}, Stardust -[5,07], {00245}, Cascade -[5,08], {00552}, Eclipse -[5,09], {00847}, Prism -[5,10], {00638}, Shadow -[5,11], {00000}, UNUSED -[6,01], {00407}, Phoenix -[6,02], {00000}, UNUSED -[6,03], {00630}, Crystal -[6,04], {00375}, Spectrum -[6,05], {00000}, UNUSED -[6,06], {00690}, Beacon -[6,07], {00848}, Zephyr -[6,08], {00752}, Dynamo -[6,09], {00144}, Lunar -[6,10], {00782}, Orion -[6,11], {00000}, UNUSED -[7,01], {00172}, Zenith -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00288}, Quantum -[7,07], {00000}, UNUSED -[7,08], {00880}, Aero -[7,09], {00766}, Zephyr -[7,10], {00144}, Zenith -[7,11], {00000}, UNUSED -[8,01], {00737}, Forge -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00248}, Neptune -[8,07], {00000}, UNUSED -[8,08], {00370}, Echo -[8,09], {00000}, UNUSED -[8,10], {00768}, Velocity -[8,11], {00000}, UNUSED diff --git a/69Containers.txt b/69Containers.txt deleted file mode 100644 index 37f5560..0000000 --- a/69Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00838}, Odyssey -[1,02], {00502}, Vertex -[1,03], {00443}, Matrix -[1,04], {00655}, Spectrum -[1,05], {00341}, Meteor -[1,06], {00880}, Solstice -[1,07], {00113}, Spectrum -[1,08], {00319}, Vortex -[1,09], {00809}, Arcadia -[1,10], {00301}, Aero -[1,11], {00218}, Cosmos -[2,01], {00707}, Blaze -[2,02], {00000}, UNUSED -[2,03], {00727}, Blaze -[2,04], {00356}, Halo -[2,05], {00575}, Blaze -[2,06], {00236}, Beacon -[2,07], {00708}, Cyclone -[2,08], {00938}, Gravity -[2,09], {00715}, Comet -[2,10], {00999}, Nexus -[2,11], {00389}, Tectonic -[3,01], {00333}, Axis -[3,02], {00000}, UNUSED -[3,03], {00217}, Halo -[3,04], {00148}, Matrix -[3,05], {00236}, Forge -[3,06], {00581}, Halo -[3,07], {00846}, Glider -[3,08], {00832}, Radiance -[3,09], {00131}, Tesla -[3,10], {00444}, Spectrum -[3,11], {00550}, Zenith -[4,01], {00413}, Twilight -[4,02], {00000}, UNUSED -[4,03], {00638}, Crystal -[4,04], {00326}, Eclipse -[4,05], {00568}, Drift -[4,06], {00290}, Zenith -[4,07], {00247}, Ember -[4,08], {00214}, Zephyr -[4,09], {00409}, Lunar -[4,10], {00663}, Stardust -[4,11], {00638}, Nova -[5,01], {00365}, Everest -[5,02], {00000}, UNUSED -[5,03], {00230}, Echo -[5,04], {00432}, Velocity -[5,05], {00181}, Quantum -[5,06], {00184}, Circuit -[5,07], {00972}, Odyssey -[5,08], {00572}, Vertex -[5,09], {00460}, Horizon -[5,10], {00630}, Spectrum -[5,11], {00000}, UNUSED -[6,01], {00402}, Cyclone -[6,02], {00000}, UNUSED -[6,03], {00657}, Zenith -[6,04], {00329}, Zenith -[6,05], {00342}, Lunar -[6,06], {00993}, Cosmos -[6,07], {00849}, Glider -[6,08], {00538}, Inferno -[6,09], {00491}, Echo -[6,10], {00818}, Lunar -[6,11], {00000}, UNUSED -[7,01], {00809}, Velocity -[7,02], {00000}, UNUSED -[7,03], {00999}, Dynamo -[7,04], {00794}, Vertex -[7,05], {00660}, Singularity -[7,06], {00000}, UNUSED -[7,07], {00976}, Dynamo -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00107}, Horizon -[7,11], {00000}, UNUSED -[8,01], {00351}, Odyssey -[8,02], {00000}, UNUSED -[8,03], {00133}, Everest -[8,04], {00371}, Nova -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00525}, Atlas -[8,11], {00000}, UNUSED diff --git a/70Containers.txt b/70Containers.txt deleted file mode 100644 index 10b7e02..0000000 --- a/70Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00447}, Matrix -[1,02], {00791}, Radiance -[1,03], {00547}, Eclipse -[1,04], {00415}, Voyager -[1,05], {00670}, Gravity -[1,06], {00857}, Zenith -[1,07], {00871}, Radiance -[1,08], {00986}, Zephyr -[1,09], {00708}, Matrix -[1,10], {00323}, Halo -[1,11], {00397}, Forge -[2,01], {00841}, Sol -[2,02], {00888}, Blaze -[2,03], {00413}, Echo -[2,04], {00108}, Circuit -[2,05], {00868}, Lunar -[2,06], {00838}, Tesla -[2,07], {00492}, Titan -[2,08], {00594}, Inferno -[2,09], {00144}, Glider -[2,10], {00588}, Zephyr -[2,11], {00907}, Ember -[3,01], {00207}, Arcadia -[3,02], {00470}, Singularity -[3,03], {00375}, Stardust -[3,04], {00473}, Echo -[3,05], {00787}, Shard -[3,06], {00756}, Cosmos -[3,07], {00519}, Matrix -[3,08], {00460}, Spectrum -[3,09], {00358}, Eclipse -[3,10], {00608}, Quantum -[3,11], {00741}, Spectrum -[4,01], {00179}, Apollo -[4,02], {00217}, Orion -[4,03], {00802}, Titan -[4,04], {00831}, Twilight -[4,05], {00472}, Dynamo -[4,06], {00841}, Nexus -[4,07], {00191}, Zenith -[4,08], {00995}, Tectonic -[4,09], {00229}, Aurora -[4,10], {00245}, Velocity -[4,11], {00340}, Twilight -[5,01], {00523}, Gravity -[5,02], {00000}, UNUSED -[5,03], {00169}, Everest -[5,04], {00858}, Echo -[5,05], {00854}, Quantum -[5,06], {00381}, Radiance -[5,07], {00000}, UNUSED -[5,08], {00946}, Horizon -[5,09], {00307}, Radiance -[5,10], {00710}, Forge -[5,11], {00978}, Prism -[6,01], {00577}, Phoenix -[6,02], {00000}, UNUSED -[6,03], {00201}, Apollo -[6,04], {00879}, Axis -[6,05], {00235}, Quantum -[6,06], {00713}, Vertex -[6,07], {00000}, UNUSED -[6,08], {00577}, Drift -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00169}, Glacier -[7,01], {00564}, Tesla -[7,02], {00000}, UNUSED -[7,03], {00518}, Forge -[7,04], {00000}, UNUSED -[7,05], {00535}, Aurora -[7,06], {00931}, Borealis -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00520}, Polaris -[8,01], {00876}, Glider -[8,02], {00000}, UNUSED -[8,03], {00645}, Titan -[8,04], {00000}, UNUSED -[8,05], {00502}, Solstice -[8,06], {00379}, Dynamo -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00125}, Horizon diff --git a/71Containers.txt b/71Containers.txt deleted file mode 100644 index ba6f8cf..0000000 --- a/71Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00804}, Everest -[1,02], {00100}, Singularity -[1,03], {00669}, Halo -[1,04], {00391}, Halo -[1,05], {00888}, Phoenix -[1,06], {00527}, Spectrum -[1,07], {00989}, Apollo -[1,08], {00996}, Solstice -[1,09], {00799}, Forge -[1,10], {00578}, Glider -[1,11], {00703}, Zenith -[2,01], {00726}, Drift -[2,02], {00449}, Atlas -[2,03], {00197}, Cosmos -[2,04], {00203}, Twilight -[2,05], {00789}, Horizon -[2,06], {00222}, Dynamo -[2,07], {00599}, Shard -[2,08], {00764}, Tectonic -[2,09], {00813}, Polaris -[2,10], {00315}, Prism -[2,11], {00502}, Halo -[3,01], {00478}, Lunar -[3,02], {00616}, Atlas -[3,03], {00329}, Spectrum -[3,04], {00845}, Circuit -[3,05], {00735}, Drift -[3,06], {00873}, Drift -[3,07], {00774}, Tectonic -[3,08], {00373}, Zenith -[3,09], {00228}, Glacier -[3,10], {00733}, Halo -[3,11], {00000}, UNUSED -[4,01], {00291}, Twilight -[4,02], {00630}, Beacon -[4,03], {00997}, Vertex -[4,04], {00844}, Shadow -[4,05], {00119}, Spectrum -[4,06], {00451}, Borealis -[4,07], {00310}, Axis -[4,08], {00726}, Aurora -[4,09], {00294}, Arcadia -[4,10], {00354}, Everest -[4,11], {00000}, UNUSED -[5,01], {00592}, Beacon -[5,02], {00317}, Nexus -[5,03], {00208}, Singularity -[5,04], {00750}, Shadow -[5,05], {00207}, Nexus -[5,06], {00663}, Drift -[5,07], {00996}, Lunar -[5,08], {00191}, Horizon -[5,09], {00803}, Shadow -[5,10], {00588}, Singularity -[5,11], {00000}, UNUSED -[6,01], {00555}, Zenith -[6,02], {00781}, Blaze -[6,03], {00211}, Zenith -[6,04], {00699}, Aero -[6,05], {00211}, Cosmos -[6,06], {00675}, Prism -[6,07], {00632}, Dynamo -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00288}, Prism -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00917}, Solstice -[7,03], {00946}, Twilight -[7,04], {00232}, Meteor -[7,05], {00875}, Eclipse -[7,06], {00000}, UNUSED -[7,07], {00925}, Cosmos -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00642}, Cosmos -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00671}, Aurora -[8,03], {00000}, UNUSED -[8,04], {00378}, Spectrum -[8,05], {00973}, Eclipse -[8,06], {00000}, UNUSED -[8,07], {00547}, Ember -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00369}, Meteor -[8,11], {00000}, UNUSED diff --git a/72Containers.txt b/72Containers.txt deleted file mode 100644 index 54ca3ab..0000000 --- a/72Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00981}, Odyssey -[1,02], {00639}, Comet -[1,03], {00643}, Forge -[1,04], {00568}, Vertex -[1,05], {00101}, Orion -[1,06], {00188}, Everest -[1,07], {00505}, Prism -[1,08], {00352}, Crystal -[1,09], {00796}, Glider -[1,10], {00503}, Sol -[1,11], {00683}, Nova -[2,01], {00874}, Horizon -[2,02], {00758}, Atlas -[2,03], {00870}, Aero -[2,04], {00580}, Zenith -[2,05], {00618}, Cyclone -[2,06], {00549}, Ember -[2,07], {00869}, Matrix -[2,08], {00778}, Horizon -[2,09], {00355}, Tectonic -[2,10], {00485}, Zenith -[2,11], {00371}, Odyssey -[3,01], {00797}, Matrix -[3,02], {00268}, Voyager -[3,03], {00566}, Shadow -[3,04], {00191}, Solstice -[3,05], {00558}, Shard -[3,06], {00243}, Eclipse -[3,07], {00544}, Velocity -[3,08], {00000}, UNUSED -[3,09], {00654}, Twilight -[3,10], {00607}, Spectrum -[3,11], {00309}, Orion -[4,01], {00679}, Infinity -[4,02], {00000}, UNUSED -[4,03], {00323}, Odyssey -[4,04], {00867}, Meteor -[4,05], {00775}, Prism -[4,06], {00845}, Arcadia -[4,07], {00253}, Spectrum -[4,08], {00000}, UNUSED -[4,09], {00324}, Aero -[4,10], {00761}, Radiance -[4,11], {00554}, Gravity -[5,01], {00548}, Voyager -[5,02], {00000}, UNUSED -[5,03], {00607}, Odyssey -[5,04], {00431}, Spectrum -[5,05], {00382}, Tesla -[5,06], {00213}, Forge -[5,07], {00435}, Atlas -[5,08], {00000}, UNUSED -[5,09], {00657}, Voyager -[5,10], {00533}, Dynamo -[5,11], {00460}, Everest -[6,01], {00278}, Zephyr -[6,02], {00000}, UNUSED -[6,03], {00921}, Axis -[6,04], {00000}, UNUSED -[6,05], {00471}, Tectonic -[6,06], {00303}, Ember -[6,07], {00930}, Neptune -[6,08], {00000}, UNUSED -[6,09], {00533}, Prism -[6,10], {00200}, Spectrum -[6,11], {00479}, Spectrum -[7,01], {00825}, Inferno -[7,02], {00000}, UNUSED -[7,03], {00479}, Phoenix -[7,04], {00000}, UNUSED -[7,05], {00520}, Voyager -[7,06], {00454}, Cascade -[7,07], {00403}, Zenith -[7,08], {00000}, UNUSED -[7,09], {00558}, Phoenix -[7,10], {00137}, Solstice -[7,11], {00669}, Eclipse -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00542}, Nimbus -[8,06], {00906}, Echo -[8,07], {00339}, Shadow -[8,08], {00000}, UNUSED -[8,09], {00478}, Titan -[8,10], {00376}, Velocity -[8,11], {00515}, Aurora diff --git a/73Containers.txt b/73Containers.txt deleted file mode 100644 index 63522af..0000000 --- a/73Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00848}, Titan -[1,02], {00876}, Zenith -[1,03], {00483}, Dynamo -[1,04], {00168}, Blaze -[1,05], {00298}, Circuit -[1,06], {00335}, Dynamo -[1,07], {00325}, Zenith -[1,08], {00629}, Zenith -[1,09], {00414}, Eclipse -[1,10], {00927}, Atlas -[1,11], {00544}, Forge -[2,01], {00397}, Ember -[2,02], {00628}, Lunar -[2,03], {00574}, Forge -[2,04], {00549}, Everest -[2,05], {00883}, Voyager -[2,06], {00222}, Echo -[2,07], {00366}, Drift -[2,08], {00629}, Titan -[2,09], {00317}, Voyager -[2,10], {00532}, Spectrum -[2,11], {00796}, Aero -[3,01], {00299}, Halo -[3,02], {00933}, Voyager -[3,03], {00457}, Sol -[3,04], {00933}, Crystal -[3,05], {00149}, Orion -[3,06], {00596}, Tesla -[3,07], {00395}, Halo -[3,08], {00282}, Velocity -[3,09], {00878}, Circuit -[3,10], {00974}, Blaze -[3,11], {00662}, Aero -[4,01], {01000}, Orion -[4,02], {00347}, Orion -[4,03], {00876}, Arcadia -[4,04], {00230}, Zephyr -[4,05], {00658}, Beacon -[4,06], {00607}, Inferno -[4,07], {00470}, Atlas -[4,08], {00674}, Borealis -[4,09], {00545}, Zenith -[4,10], {00215}, Forge -[4,11], {00243}, Crystal -[5,01], {00713}, Twilight -[5,02], {00771}, Lunar -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00384}, Lunar -[5,06], {00916}, Singularity -[5,07], {00207}, Spectrum -[5,08], {00173}, Apollo -[5,09], {00817}, Borealis -[5,10], {00502}, Velocity -[5,11], {00868}, Halo -[6,01], {00000}, UNUSED -[6,02], {00313}, Forge -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00892}, Aero -[6,06], {00000}, UNUSED -[6,07], {00266}, Singularity -[6,08], {00496}, Nexus -[6,09], {00370}, Dynamo -[6,10], {00693}, Dynamo -[6,11], {00428}, Tesla -[7,01], {00000}, UNUSED -[7,02], {00124}, Gravity -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00128}, Eclipse -[7,06], {00000}, UNUSED -[7,07], {00986}, Dynamo -[7,08], {00638}, Echo -[7,09], {00377}, Echo -[7,10], {00622}, Tectonic -[7,11], {00759}, Eclipse -[8,01], {00000}, UNUSED -[8,02], {00232}, Glider -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00993}, Aero -[8,06], {00000}, UNUSED -[8,07], {00879}, Orion -[8,08], {00000}, UNUSED -[8,09], {00605}, Prism -[8,10], {00767}, Solstice -[8,11], {00411}, Neptune diff --git a/74Containers.txt b/74Containers.txt deleted file mode 100644 index f2b42f0..0000000 --- a/74Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00832}, Velocity -[1,02], {00956}, Titan -[1,03], {00523}, Horizon -[1,04], {00974}, Crystal -[1,05], {00668}, Forge -[1,06], {00922}, Meteor -[1,07], {00604}, Drift -[1,08], {00988}, Eclipse -[1,09], {00482}, Cascade -[1,10], {00632}, Cyclone -[1,11], {00844}, Drift -[2,01], {00884}, Twilight -[2,02], {00706}, Comet -[2,03], {00292}, Shard -[2,04], {00897}, Horizon -[2,05], {00246}, Circuit -[2,06], {00867}, Vertex -[2,07], {00210}, Dynamo -[2,08], {00303}, Zephyr -[2,09], {00665}, Cosmos -[2,10], {00166}, Velocity -[2,11], {00320}, Prism -[3,01], {00819}, Neptune -[3,02], {00897}, Lunar -[3,03], {00743}, Nova -[3,04], {00302}, Vortex -[3,05], {00799}, Nova -[3,06], {00663}, Shadow -[3,07], {00429}, Forge -[3,08], {00939}, Odyssey -[3,09], {00124}, Comet -[3,10], {00478}, Axis -[3,11], {00880}, Stardust -[4,01], {00662}, Solstice -[4,02], {00346}, Spectrum -[4,03], {00430}, Gravity -[4,04], {00850}, Glider -[4,05], {00231}, Glacier -[4,06], {00919}, Lunar -[4,07], {00491}, Quantum -[4,08], {00465}, Atlas -[4,09], {00938}, Atlas -[4,10], {00337}, Radiance -[4,11], {00000}, UNUSED -[5,01], {00791}, Nova -[5,02], {00329}, Zenith -[5,03], {00392}, Neptune -[5,04], {00306}, Aero -[5,05], {00687}, Forge -[5,06], {00998}, Odyssey -[5,07], {00431}, Everest -[5,08], {00000}, UNUSED -[5,09], {00316}, Vortex -[5,10], {00573}, Glacier -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00896}, Echo -[6,03], {00124}, Nova -[6,04], {00201}, Vertex -[6,05], {00670}, Infinity -[6,06], {00242}, Comet -[6,07], {00453}, Nexus -[6,08], {00000}, UNUSED -[6,09], {00675}, Cyclone -[6,10], {00938}, Matrix -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00535}, Forge -[7,03], {00955}, Circuit -[7,04], {00243}, Singularity -[7,05], {00177}, Spectrum -[7,06], {00304}, Drift -[7,07], {00690}, Infinity -[7,08], {00000}, UNUSED -[7,09], {00758}, Velocity -[7,10], {00542}, Twilight -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00473}, Twilight -[8,03], {00343}, Cosmos -[8,04], {00807}, Echo -[8,05], {00000}, UNUSED -[8,06], {00812}, Spectrum -[8,07], {00773}, Spectrum -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00854}, Nexus -[8,11], {00000}, UNUSED diff --git a/75Containers.txt b/75Containers.txt deleted file mode 100644 index 5963fde..0000000 --- a/75Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00213}, Echo -[1,02], {00966}, Inferno -[1,03], {00605}, Zenith -[1,04], {00110}, Spectrum -[1,05], {00102}, Mirage -[1,06], {00671}, Circuit -[1,07], {00249}, Twilight -[1,08], {00358}, Axis -[1,09], {00261}, Sol -[1,10], {00934}, Orion -[1,11], {00626}, Solstice -[2,01], {00505}, Voyager -[2,02], {00798}, Sol -[2,03], {00608}, Axis -[2,04], {00908}, Titan -[2,05], {00651}, Odyssey -[2,06], {00439}, Blaze -[2,07], {00807}, Polaris -[2,08], {00357}, Tesla -[2,09], {00288}, Meteor -[2,10], {00846}, Drift -[2,11], {00820}, Borealis -[3,01], {00241}, Singularity -[3,02], {00444}, Zenith -[3,03], {00182}, Cosmos -[3,04], {00501}, Vortex -[3,05], {00301}, Echo -[3,06], {00928}, Orion -[3,07], {00397}, Horizon -[3,08], {00129}, Neptune -[3,09], {00980}, Radiance -[3,10], {00960}, Infinity -[3,11], {00530}, Dynamo -[4,01], {00994}, Solstice -[4,02], {00271}, Polaris -[4,03], {00816}, Vortex -[4,04], {00469}, Velocity -[4,05], {00172}, Gravity -[4,06], {00881}, Orion -[4,07], {00207}, Cyclone -[4,08], {00184}, Infinity -[4,09], {00597}, Atlas -[4,10], {00618}, Velocity -[4,11], {00533}, Cosmos -[5,01], {00587}, Polaris -[5,02], {00740}, Radiance -[5,03], {00910}, Stardust -[5,04], {00573}, Echo -[5,05], {00579}, Vortex -[5,06], {00000}, UNUSED -[5,07], {00533}, Cascade -[5,08], {00270}, Forge -[5,09], {00000}, UNUSED -[5,10], {00890}, Titan -[5,11], {00926}, Lunar -[6,01], {00184}, Nexus -[6,02], {00674}, Singularity -[6,03], {00704}, Crystal -[6,04], {00416}, Glacier -[6,05], {00702}, Eclipse -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00581}, Spectrum -[6,09], {00000}, UNUSED -[6,10], {00895}, Mirage -[6,11], {00381}, Aero -[7,01], {00422}, Everest -[7,02], {00913}, Cyclone -[7,03], {00000}, UNUSED -[7,04], {00578}, Ember -[7,05], {00364}, Drift -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00888}, Arcadia -[7,09], {00000}, UNUSED -[7,10], {00678}, Spectrum -[7,11], {00706}, Gravity -[8,01], {00573}, Crystal -[8,02], {00238}, Everest -[8,03], {00000}, UNUSED -[8,04], {00170}, Horizon -[8,05], {00231}, Axis -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00139}, Vertex -[8,09], {00000}, UNUSED -[8,10], {00611}, Nimbus -[8,11], {00565}, Velocity diff --git a/76Containers.txt b/76Containers.txt deleted file mode 100644 index 1273c24..0000000 --- a/76Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00775}, Circuit -[1,02], {00139}, Polaris -[1,03], {00287}, Vortex -[1,04], {00344}, Axis -[1,05], {00850}, Velocity -[1,06], {00977}, Radiance -[1,07], {00951}, Mirage -[1,08], {00532}, Solstice -[1,09], {00653}, Borealis -[1,10], {00600}, Phoenix -[1,11], {00490}, Cyclone -[2,01], {00976}, Mirage -[2,02], {00777}, Vertex -[2,03], {00660}, Odyssey -[2,04], {00816}, Vertex -[2,05], {00830}, Orion -[2,06], {00999}, Arcadia -[2,07], {00778}, Phoenix -[2,08], {00751}, Singularity -[2,09], {00133}, Solstice -[2,10], {00395}, Aurora -[2,11], {00167}, Spectrum -[3,01], {00505}, Infinity -[3,02], {00488}, Nimbus -[3,03], {00514}, Arcadia -[3,04], {00634}, Orion -[3,05], {00899}, Shadow -[3,06], {00872}, Comet -[3,07], {00792}, Twilight -[3,08], {00980}, Polaris -[3,09], {00477}, Cascade -[3,10], {00187}, Everest -[3,11], {00967}, Glider -[4,01], {00000}, UNUSED -[4,02], {00446}, Neptune -[4,03], {00993}, Matrix -[4,04], {00568}, Ember -[4,05], {00977}, Nova -[4,06], {00307}, Echo -[4,07], {00980}, Twilight -[4,08], {00912}, Borealis -[4,09], {00237}, Velocity -[4,10], {00920}, Titan -[4,11], {00540}, Tesla -[5,01], {00000}, UNUSED -[5,02], {00861}, Mirage -[5,03], {00663}, Beacon -[5,04], {00957}, Velocity -[5,05], {00420}, Cascade -[5,06], {00922}, Spectrum -[5,07], {00789}, Echo -[5,08], {00481}, Borealis -[5,09], {00923}, Cascade -[5,10], {00319}, Aurora -[5,11], {00850}, Zenith -[6,01], {00000}, UNUSED -[6,02], {00307}, Titan -[6,03], {00725}, Cyclone -[6,04], {00638}, Lunar -[6,05], {00396}, Nexus -[6,06], {00203}, Voyager -[6,07], {00654}, Singularity -[6,08], {00160}, Comet -[6,09], {00214}, Zenith -[6,10], {00369}, Borealis -[6,11], {00885}, Halo -[7,01], {00000}, UNUSED -[7,02], {00258}, Velocity -[7,03], {00784}, Nimbus -[7,04], {00836}, Tesla -[7,05], {00923}, Nimbus -[7,06], {00621}, Beacon -[7,07], {00000}, UNUSED -[7,08], {00412}, Phoenix -[7,09], {00197}, Everest -[7,10], {00867}, Shadow -[7,11], {00509}, Neptune -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00233}, Tesla -[8,04], {00000}, UNUSED -[8,05], {00749}, Cosmos -[8,06], {00491}, Comet -[8,07], {00000}, UNUSED -[8,08], {00301}, Cascade -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED diff --git a/77Containers.txt b/77Containers.txt deleted file mode 100644 index 5b5bad5..0000000 --- a/77Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00248}, Quantum -[1,02], {00875}, Titan -[1,03], {00827}, Vortex -[1,04], {00242}, Quantum -[1,05], {00822}, Vortex -[1,06], {00508}, Dynamo -[1,07], {00622}, Spectrum -[1,08], {00427}, Mirage -[1,09], {00668}, Radiance -[1,10], {00603}, Meteor -[1,11], {00663}, Comet -[2,01], {00105}, Zenith -[2,02], {00977}, Spectrum -[2,03], {00533}, Horizon -[2,04], {00791}, Arcadia -[2,05], {00829}, Voyager -[2,06], {00203}, Shard -[2,07], {00678}, Gravity -[2,08], {00345}, Echo -[2,09], {00862}, Tectonic -[2,10], {00211}, Shadow -[2,11], {00181}, Prism -[3,01], {00464}, Odyssey -[3,02], {00967}, Vertex -[3,03], {00428}, Solstice -[3,04], {00923}, Circuit -[3,05], {00445}, Nimbus -[3,06], {00636}, Borealis -[3,07], {00203}, Spectrum -[3,08], {00410}, Horizon -[3,09], {00728}, Drift -[3,10], {00610}, Velocity -[3,11], {00832}, Meteor -[4,01], {00908}, Horizon -[4,02], {00000}, UNUSED -[4,03], {00561}, Lunar -[4,04], {00170}, Glider -[4,05], {00506}, Velocity -[4,06], {00142}, Drift -[4,07], {00961}, Cosmos -[4,08], {00370}, Nimbus -[4,09], {00562}, Circuit -[4,10], {00759}, Zephyr -[4,11], {00206}, Zenith -[5,01], {00124}, Velocity -[5,02], {00000}, UNUSED -[5,03], {00315}, Spectrum -[5,04], {00719}, Apollo -[5,05], {00120}, Zenith -[5,06], {00272}, Aero -[5,07], {00986}, Mirage -[5,08], {00511}, Meteor -[5,09], {00910}, Shadow -[5,10], {00158}, Odyssey -[5,11], {00898}, Dynamo -[6,01], {00858}, Tectonic -[6,02], {00000}, UNUSED -[6,03], {00803}, Glacier -[6,04], {00406}, Infinity -[6,05], {00000}, UNUSED -[6,06], {00416}, Horizon -[6,07], {00570}, Tectonic -[6,08], {00937}, Velocity -[6,09], {00828}, Horizon -[6,10], {00620}, Blaze -[6,11], {00370}, Horizon -[7,01], {00953}, Odyssey -[7,02], {00000}, UNUSED -[7,03], {00731}, Zenith -[7,04], {00890}, Meteor -[7,05], {00000}, UNUSED -[7,06], {00965}, Cascade -[7,07], {00000}, UNUSED -[7,08], {00767}, Halo -[7,09], {00231}, Cosmos -[7,10], {00310}, Tesla -[7,11], {00384}, Circuit -[8,01], {00302}, Horizon -[8,02], {00000}, UNUSED -[8,03], {00700}, Shard -[8,04], {00317}, Vertex -[8,05], {00000}, UNUSED -[8,06], {00283}, Twilight -[8,07], {00000}, UNUSED -[8,08], {00847}, Echo -[8,09], {00129}, Atlas -[8,10], {00000}, UNUSED -[8,11], {00594}, Eclipse diff --git a/78Containers.txt b/78Containers.txt deleted file mode 100644 index 43d931a..0000000 --- a/78Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00341}, Axis -[1,02], {00402}, Titan -[1,03], {00436}, Solstice -[1,04], {00552}, Blaze -[1,05], {00828}, Phoenix -[1,06], {00371}, Quantum -[1,07], {00827}, Zenith -[1,08], {00779}, Twilight -[1,09], {00692}, Glider -[1,10], {00531}, Odyssey -[1,11], {00973}, Nova -[2,01], {00924}, Aero -[2,02], {00475}, Sol -[2,03], {00463}, Polaris -[2,04], {00499}, Singularity -[2,05], {00281}, Glider -[2,06], {00304}, Inferno -[2,07], {00329}, Ember -[2,08], {00310}, Vertex -[2,09], {00842}, Prism -[2,10], {00541}, Comet -[2,11], {00927}, Quantum -[3,01], {00468}, Sol -[3,02], {00415}, Orion -[3,03], {00357}, Zenith -[3,04], {00545}, Prism -[3,05], {00248}, Cyclone -[3,06], {00208}, Zephyr -[3,07], {00625}, Everest -[3,08], {00484}, Eclipse -[3,09], {00867}, Inferno -[3,10], {00894}, Eclipse -[3,11], {00864}, Zenith -[4,01], {00603}, Circuit -[4,02], {00270}, Beacon -[4,03], {00661}, Halo -[4,04], {00161}, Lunar -[4,05], {00857}, Echo -[4,06], {00118}, Horizon -[4,07], {00622}, Tectonic -[4,08], {00183}, Halo -[4,09], {00908}, Drift -[4,10], {00934}, Sol -[4,11], {00734}, Drift -[5,01], {00437}, Gravity -[5,02], {00221}, Shadow -[5,03], {00899}, Quantum -[5,04], {00717}, Vertex -[5,05], {00843}, Horizon -[5,06], {00994}, Crystal -[5,07], {00000}, UNUSED -[5,08], {00221}, Lunar -[5,09], {00438}, Cascade -[5,10], {00695}, Circuit -[5,11], {00580}, Vortex -[6,01], {00727}, Forge -[6,02], {00755}, Everest -[6,03], {00000}, UNUSED -[6,04], {00547}, Zephyr -[6,05], {00173}, Gravity -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00736}, Stardust -[6,09], {00861}, Forge -[6,10], {00341}, Aurora -[6,11], {00758}, Vortex -[7,01], {00186}, Eclipse -[7,02], {00147}, Spectrum -[7,03], {00000}, UNUSED -[7,04], {00918}, Zenith -[7,05], {00422}, Vertex -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00819}, Lunar -[7,09], {00385}, Infinity -[7,10], {00410}, Velocity -[7,11], {00581}, Solstice -[8,01], {00463}, Meteor -[8,02], {00331}, Zenith -[8,03], {00000}, UNUSED -[8,04], {00648}, Phoenix -[8,05], {00673}, Everest -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00577}, Matrix -[8,09], {00519}, Nexus -[8,10], {00790}, Drift -[8,11], {00574}, Glacier diff --git a/79Containers.txt b/79Containers.txt deleted file mode 100644 index 65b4d03..0000000 --- a/79Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00216}, Echo -[1,02], {00601}, Horizon -[1,03], {00629}, Twilight -[1,04], {00351}, Everest -[1,05], {00990}, Vortex -[1,06], {00499}, Nexus -[1,07], {00496}, Sol -[1,08], {00368}, Shard -[1,09], {00694}, Blaze -[1,10], {00667}, Atlas -[1,11], {00946}, Dynamo -[2,01], {00121}, Gravity -[2,02], {00348}, Velocity -[2,03], {00721}, Glider -[2,04], {00254}, Phoenix -[2,05], {00905}, Zenith -[2,06], {00483}, Stardust -[2,07], {00884}, Forge -[2,08], {00504}, Drift -[2,09], {00638}, Glider -[2,10], {00165}, Voyager -[2,11], {00878}, Beacon -[3,01], {00635}, Phoenix -[3,02], {00951}, Halo -[3,03], {00429}, Singularity -[3,04], {00802}, Orion -[3,05], {00874}, Matrix -[3,06], {00219}, Zenith -[3,07], {00528}, Polaris -[3,08], {00917}, Arcadia -[3,09], {00912}, Aero -[3,10], {00170}, Cyclone -[3,11], {00978}, Glider -[4,01], {00893}, Inferno -[4,02], {00790}, Nexus -[4,03], {00883}, Eclipse -[4,04], {00129}, Zenith -[4,05], {00748}, Vertex -[4,06], {00995}, Cyclone -[4,07], {00877}, Lunar -[4,08], {00310}, Odyssey -[4,09], {00997}, Glacier -[4,10], {00608}, Aurora -[4,11], {00822}, Quantum -[5,01], {00210}, Echo -[5,02], {00319}, Everest -[5,03], {00930}, Sol -[5,04], {00506}, Shadow -[5,05], {00674}, Vertex -[5,06], {00341}, Cyclone -[5,07], {00403}, Crystal -[5,08], {00618}, Zenith -[5,09], {00853}, Neptune -[5,10], {00537}, Neptune -[5,11], {00407}, Velocity -[6,01], {00390}, Cyclone -[6,02], {00473}, Orion -[6,03], {00350}, Axis -[6,04], {00267}, Aero -[6,05], {00802}, Meteor -[6,06], {00838}, Halo -[6,07], {00951}, Beacon -[6,08], {00000}, UNUSED -[6,09], {00473}, Glider -[6,10], {00000}, UNUSED -[6,11], {00813}, Matrix -[7,01], {00336}, Eclipse -[7,02], {00000}, UNUSED -[7,03], {00547}, Stardust -[7,04], {00711}, Arcadia -[7,05], {00282}, Eclipse -[7,06], {00854}, Echo -[7,07], {00457}, Glider -[7,08], {00000}, UNUSED -[7,09], {00591}, Sol -[7,10], {00000}, UNUSED -[7,11], {00389}, Circuit -[8,01], {00352}, Aero -[8,02], {00000}, UNUSED -[8,03], {00261}, Voyager -[8,04], {00829}, Nova -[8,05], {00167}, Blaze -[8,06], {00830}, Nexus -[8,07], {00199}, Nova -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00184}, Aero diff --git a/80Containers.txt b/80Containers.txt deleted file mode 100644 index bcbec4b..0000000 --- a/80Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00953}, Spectrum -[1,02], {00137}, Nimbus -[1,03], {00137}, Phoenix -[1,04], {00942}, Quantum -[1,05], {00370}, Phoenix -[1,06], {00877}, Zephyr -[1,07], {00499}, Polaris -[1,08], {00666}, Borealis -[1,09], {00824}, Zenith -[1,10], {00573}, Radiance -[1,11], {00304}, Phoenix -[2,01], {00369}, Horizon -[2,02], {00487}, Nova -[2,03], {00874}, Aurora -[2,04], {00859}, Inferno -[2,05], {00775}, Zenith -[2,06], {00594}, Dynamo -[2,07], {00732}, Beacon -[2,08], {00759}, Orion -[2,09], {00504}, Solstice -[2,10], {00662}, Glider -[2,11], {00301}, Inferno -[3,01], {00626}, Prism -[3,02], {00685}, Polaris -[3,03], {00829}, Cyclone -[3,04], {00845}, Orion -[3,05], {00484}, Blaze -[3,06], {00244}, Horizon -[3,07], {00939}, Spectrum -[3,08], {00738}, Vortex -[3,09], {00857}, Velocity -[3,10], {00770}, Borealis -[3,11], {00368}, Comet -[4,01], {00921}, Drift -[4,02], {00974}, Aurora -[4,03], {00118}, Echo -[4,04], {00721}, Eclipse -[4,05], {00672}, Inferno -[4,06], {00522}, Matrix -[4,07], {00534}, Zenith -[4,08], {00873}, Stardust -[4,09], {00634}, Nexus -[4,10], {00634}, Echo -[4,11], {00244}, Vertex -[5,01], {00153}, Twilight -[5,02], {00609}, Arcadia -[5,03], {00504}, Radiance -[5,04], {00836}, Halo -[5,05], {00751}, Borealis -[5,06], {00827}, Spectrum -[5,07], {00248}, Matrix -[5,08], {00130}, Blaze -[5,09], {00239}, Quantum -[5,10], {00472}, Polaris -[5,11], {00000}, UNUSED -[6,01], {00354}, Echo -[6,02], {00709}, Tectonic -[6,03], {00443}, Phoenix -[6,04], {00300}, Quantum -[6,05], {00366}, Quantum -[6,06], {00981}, Blaze -[6,07], {00320}, Cyclone -[6,08], {00613}, Apollo -[6,09], {00625}, Vertex -[6,10], {00995}, Radiance -[6,11], {00000}, UNUSED -[7,01], {00790}, Shadow -[7,02], {00000}, UNUSED -[7,03], {00176}, Quantum -[7,04], {00603}, Tesla -[7,05], {00000}, UNUSED -[7,06], {00992}, Comet -[7,07], {00603}, Orion -[7,08], {00432}, Drift -[7,09], {00401}, Horizon -[7,10], {00302}, Zephyr -[7,11], {00000}, UNUSED -[8,01], {00345}, Tesla -[8,02], {00000}, UNUSED -[8,03], {00152}, Shard -[8,04], {00215}, Atlas -[8,05], {00000}, UNUSED -[8,06], {00957}, Velocity -[8,07], {00421}, Odyssey -[8,08], {00921}, Arcadia -[8,09], {00894}, Odyssey -[8,10], {00484}, Velocity -[8,11], {00000}, UNUSED diff --git a/81Containers.txt b/81Containers.txt deleted file mode 100644 index 9c0b026..0000000 --- a/81Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00917}, Infinity -[1,02], {00826}, Ember -[1,03], {00733}, Stardust -[1,04], {00409}, Sol -[1,05], {00962}, Apollo -[1,06], {00454}, Mirage -[1,07], {00963}, Zenith -[1,08], {00463}, Zenith -[1,09], {00518}, Blaze -[1,10], {00472}, Vortex -[1,11], {00179}, Vertex -[2,01], {00791}, Eclipse -[2,02], {00829}, Nova -[2,03], {00692}, Matrix -[2,04], {00627}, Inferno -[2,05], {00220}, Spectrum -[2,06], {00604}, Blaze -[2,07], {00921}, Circuit -[2,08], {00439}, Vertex -[2,09], {00198}, Tectonic -[2,10], {00383}, Inferno -[2,11], {00322}, Lunar -[3,01], {00180}, Cosmos -[3,02], {00665}, Vertex -[3,03], {00849}, Glacier -[3,04], {00669}, Phoenix -[3,05], {00753}, Matrix -[3,06], {00552}, Vertex -[3,07], {00893}, Twilight -[3,08], {00950}, Polaris -[3,09], {00902}, Drift -[3,10], {00560}, Zenith -[3,11], {00352}, Velocity -[4,01], {00882}, Infinity -[4,02], {00702}, Crystal -[4,03], {00689}, Circuit -[4,04], {00434}, Cascade -[4,05], {00819}, Sol -[4,06], {00554}, Vertex -[4,07], {00567}, Horizon -[4,08], {00634}, Echo -[4,09], {00390}, Nexus -[4,10], {00940}, Zenith -[4,11], {00850}, Vortex -[5,01], {00812}, Voyager -[5,02], {00215}, Tectonic -[5,03], {00637}, Orion -[5,04], {00486}, Titan -[5,05], {00134}, Zenith -[5,06], {00398}, Velocity -[5,07], {00774}, Axis -[5,08], {00307}, Horizon -[5,09], {00848}, Axis -[5,10], {00224}, Eclipse -[5,11], {00804}, Zenith -[6,01], {00000}, UNUSED -[6,02], {00897}, Vertex -[6,03], {00606}, Singularity -[6,04], {00505}, Spectrum -[6,05], {00570}, Nexus -[6,06], {00203}, Aurora -[6,07], {00321}, Aero -[6,08], {00280}, Comet -[6,09], {00270}, Eclipse -[6,10], {00784}, Crystal -[6,11], {00232}, Vertex -[7,01], {00000}, UNUSED -[7,02], {00468}, Stardust -[7,03], {00000}, UNUSED -[7,04], {00136}, Apollo -[7,05], {00414}, Sol -[7,06], {00544}, Prism -[7,07], {00443}, Vortex -[7,08], {00732}, Ember -[7,09], {00000}, UNUSED -[7,10], {00798}, Gravity -[7,11], {00909}, Infinity -[8,01], {00000}, UNUSED -[8,02], {00238}, Ember -[8,03], {00000}, UNUSED -[8,04], {00173}, Spectrum -[8,05], {00930}, Neptune -[8,06], {00267}, Matrix -[8,07], {00250}, Dynamo -[8,08], {00128}, Spectrum -[8,09], {00000}, UNUSED -[8,10], {00732}, Shard -[8,11], {00287}, Zenith diff --git a/82Containers.txt b/82Containers.txt deleted file mode 100644 index 3633a46..0000000 --- a/82Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00859}, Blaze -[1,02], {00111}, Matrix -[1,03], {00745}, Glider -[1,04], {00650}, Twilight -[1,05], {00155}, Echo -[1,06], {00182}, Tectonic -[1,07], {00954}, Ember -[1,08], {00507}, Velocity -[1,09], {00582}, Horizon -[1,10], {00741}, Shard -[1,11], {00849}, Everest -[2,01], {00417}, Inferno -[2,02], {00994}, Circuit -[2,03], {00172}, Everest -[2,04], {00792}, Shadow -[2,05], {00373}, Crystal -[2,06], {00479}, Zenith -[2,07], {00416}, Zenith -[2,08], {00155}, Radiance -[2,09], {00253}, Everest -[2,10], {00930}, Prism -[2,11], {00485}, Mirage -[3,01], {00636}, Nexus -[3,02], {00296}, Spectrum -[3,03], {00552}, Ember -[3,04], {00810}, Zenith -[3,05], {00539}, Arcadia -[3,06], {00354}, Twilight -[3,07], {00864}, Spectrum -[3,08], {00538}, Quantum -[3,09], {00426}, Twilight -[3,10], {00685}, Prism -[3,11], {00424}, Titan -[4,01], {00392}, Drift -[4,02], {00772}, Cyclone -[4,03], {00870}, Blaze -[4,04], {00438}, Eclipse -[4,05], {00225}, Shadow -[4,06], {00879}, Echo -[4,07], {00456}, Velocity -[4,08], {00633}, Beacon -[4,09], {01000}, Orion -[4,10], {00288}, Infinity -[4,11], {00636}, Halo -[5,01], {00395}, Blaze -[5,02], {00403}, Mirage -[5,03], {00995}, Horizon -[5,04], {00426}, Radiance -[5,05], {00991}, Eclipse -[5,06], {00777}, Velocity -[5,07], {00202}, Circuit -[5,08], {00448}, Axis -[5,09], {00822}, Shard -[5,10], {00676}, Glider -[5,11], {00806}, Ember -[6,01], {00858}, Arcadia -[6,02], {00759}, Comet -[6,03], {00243}, Shadow -[6,04], {00611}, Nova -[6,05], {00178}, Apollo -[6,06], {00000}, UNUSED -[6,07], {00908}, Nexus -[6,08], {00670}, Meteor -[6,09], {00956}, Vortex -[6,10], {00259}, Zenith -[6,11], {00345}, Vertex -[7,01], {00228}, Eclipse -[7,02], {00693}, Phoenix -[7,03], {00226}, Infinity -[7,04], {00655}, Orion -[7,05], {00827}, Cosmos -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00167}, Crystal -[7,09], {00246}, Drift -[7,10], {00223}, Eclipse -[7,11], {00154}, Stardust -[8,01], {00192}, Spectrum -[8,02], {00995}, Odyssey -[8,03], {00597}, Radiance -[8,04], {00654}, Lunar -[8,05], {00369}, Infinity -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00939}, Velocity -[8,10], {00261}, Echo -[8,11], {00294}, Zephyr diff --git a/83Containers.txt b/83Containers.txt deleted file mode 100644 index 2a85473..0000000 --- a/83Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00976}, Eclipse -[1,02], {00580}, Velocity -[1,03], {00134}, Blaze -[1,04], {00869}, Phoenix -[1,05], {00495}, Glider -[1,06], {00420}, Velocity -[1,07], {00795}, Horizon -[1,08], {00120}, Titan -[1,09], {00234}, Comet -[1,10], {00365}, Infinity -[1,11], {00253}, Twilight -[2,01], {00282}, Neptune -[2,02], {00720}, Glider -[2,03], {00869}, Radiance -[2,04], {00266}, Arcadia -[2,05], {00188}, Crystal -[2,06], {00722}, Velocity -[2,07], {00710}, Tesla -[2,08], {00525}, Echo -[2,09], {00756}, Titan -[2,10], {00524}, Horizon -[2,11], {00617}, Tectonic -[3,01], {00722}, Sol -[3,02], {00273}, Vertex -[3,03], {00644}, Titan -[3,04], {00808}, Shadow -[3,05], {00789}, Horizon -[3,06], {00187}, Nexus -[3,07], {00576}, Nexus -[3,08], {00763}, Everest -[3,09], {00728}, Solstice -[3,10], {00368}, Tesla -[3,11], {00397}, Apollo -[4,01], {00703}, Voyager -[4,02], {00690}, Inferno -[4,03], {00681}, Forge -[4,04], {00481}, Inferno -[4,05], {00710}, Echo -[4,06], {00643}, Voyager -[4,07], {00881}, Circuit -[4,08], {00195}, Vertex -[4,09], {00679}, Nimbus -[4,10], {00636}, Comet -[4,11], {00868}, Borealis -[5,01], {00739}, Zephyr -[5,02], {00777}, Solstice -[5,03], {00561}, Nova -[5,04], {00269}, Lunar -[5,05], {00612}, Everest -[5,06], {00324}, Prism -[5,07], {00100}, Polaris -[5,08], {00571}, Shard -[5,09], {00848}, Comet -[5,10], {00691}, Nimbus -[5,11], {00377}, Sol -[6,01], {00634}, Matrix -[6,02], {00000}, UNUSED -[6,03], {00338}, Voyager -[6,04], {00864}, Arcadia -[6,05], {00537}, Cascade -[6,06], {00459}, Aero -[6,07], {00439}, Odyssey -[6,08], {00771}, Titan -[6,09], {00152}, Borealis -[6,10], {00712}, Spectrum -[6,11], {00639}, Velocity -[7,01], {00638}, Nexus -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00882}, Velocity -[7,05], {00289}, Axis -[7,06], {00515}, Zephyr -[7,07], {00925}, Tesla -[7,08], {00719}, Glider -[7,09], {00212}, Eclipse -[7,10], {00926}, Eclipse -[7,11], {00164}, Forge -[8,01], {00391}, Infinity -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00617}, Infinity -[8,05], {00354}, Crystal -[8,06], {00630}, Sol -[8,07], {00232}, Mirage -[8,08], {00256}, Prism -[8,09], {00899}, Zephyr -[8,10], {00443}, Glacier -[8,11], {00710}, Nova diff --git a/84Containers.txt b/84Containers.txt deleted file mode 100644 index 3630f86..0000000 --- a/84Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00611}, Ember -[1,02], {00587}, Neptune -[1,03], {00227}, Tectonic -[1,04], {00557}, Vertex -[1,05], {00463}, Apollo -[1,06], {00131}, Echo -[1,07], {00701}, Aero -[1,08], {00541}, Cyclone -[1,09], {00214}, Zenith -[1,10], {00733}, Nova -[1,11], {00465}, Sol -[2,01], {00797}, Spectrum -[2,02], {00876}, Vertex -[2,03], {00642}, Atlas -[2,04], {00168}, Prism -[2,05], {00762}, Sol -[2,06], {00787}, Twilight -[2,07], {00277}, Zephyr -[2,08], {00875}, Vortex -[2,09], {00205}, Echo -[2,10], {00989}, Everest -[2,11], {00772}, Nova -[3,01], {00197}, Singularity -[3,02], {00472}, Cascade -[3,03], {00684}, Tesla -[3,04], {00294}, Horizon -[3,05], {00443}, Zenith -[3,06], {00622}, Zephyr -[3,07], {00525}, Echo -[3,08], {00200}, Zephyr -[3,09], {00636}, Aurora -[3,10], {00482}, Arcadia -[3,11], {00486}, Eclipse -[4,01], {00181}, Cyclone -[4,02], {00610}, Phoenix -[4,03], {00871}, Axis -[4,04], {00494}, Nimbus -[4,05], {00970}, Shadow -[4,06], {00898}, Meteor -[4,07], {00432}, Prism -[4,08], {00557}, Sol -[4,09], {00113}, Horizon -[4,10], {00181}, Cyclone -[4,11], {00151}, Phoenix -[5,01], {00431}, Halo -[5,02], {00816}, Halo -[5,03], {00185}, Zephyr -[5,04], {00151}, Comet -[5,05], {00760}, Eclipse -[5,06], {00133}, Velocity -[5,07], {00545}, Glacier -[5,08], {00267}, Eclipse -[5,09], {00985}, Tectonic -[5,10], {00126}, Blaze -[5,11], {00610}, Tectonic -[6,01], {00218}, Vertex -[6,02], {00760}, Circuit -[6,03], {00267}, Apollo -[6,04], {00865}, Tesla -[6,05], {00285}, Meteor -[6,06], {00165}, Glacier -[6,07], {00289}, Dynamo -[6,08], {00284}, Eclipse -[6,09], {00739}, Everest -[6,10], {00645}, Cascade -[6,11], {00114}, Prism -[7,01], {00733}, Singularity -[7,02], {00621}, Vortex -[7,03], {00817}, Lunar -[7,04], {00799}, Zenith -[7,05], {00000}, UNUSED -[7,06], {00640}, Quantum -[7,07], {00605}, Zenith -[7,08], {00412}, Gravity -[7,09], {00859}, Cyclone -[7,10], {00222}, Lunar -[7,11], {00982}, Nimbus -[8,01], {00000}, UNUSED -[8,02], {00560}, Titan -[8,03], {00214}, Echo -[8,04], {00305}, Velocity -[8,05], {00000}, UNUSED -[8,06], {00508}, Forge -[8,07], {00485}, Axis -[8,08], {00837}, Cosmos -[8,09], {00938}, Solstice -[8,10], {00636}, Solstice -[8,11], {00000}, UNUSED diff --git a/85Containers.txt b/85Containers.txt deleted file mode 100644 index 4f68c09..0000000 --- a/85Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00602}, Aurora -[1,02], {00721}, Infinity -[1,03], {00625}, Quantum -[1,04], {00287}, Glider -[1,05], {00480}, Vertex -[1,06], {00288}, Velocity -[1,07], {00356}, Crystal -[1,08], {00887}, Prism -[1,09], {00532}, Crystal -[1,10], {00909}, Mirage -[1,11], {00333}, Prism -[2,01], {00917}, Apollo -[2,02], {00294}, Zephyr -[2,03], {00228}, Dynamo -[2,04], {00571}, Neptune -[2,05], {00129}, Odyssey -[2,06], {00319}, Zenith -[2,07], {00592}, Spectrum -[2,08], {00617}, Meteor -[2,09], {00953}, Spectrum -[2,10], {00246}, Odyssey -[2,11], {00828}, Phoenix -[3,01], {00527}, Cosmos -[3,02], {00986}, Inferno -[3,03], {00889}, Nova -[3,04], {00723}, Shard -[3,05], {00405}, Borealis -[3,06], {00472}, Tectonic -[3,07], {00107}, Eclipse -[3,08], {00120}, Quantum -[3,09], {00673}, Arcadia -[3,10], {00677}, Cyclone -[3,11], {00977}, Prism -[4,01], {00434}, Circuit -[4,02], {00260}, Horizon -[4,03], {00681}, Orion -[4,04], {00601}, Cosmos -[4,05], {00426}, Horizon -[4,06], {00366}, Horizon -[4,07], {00323}, Drift -[4,08], {00893}, Infinity -[4,09], {00752}, Halo -[4,10], {00551}, Radiance -[4,11], {00409}, Echo -[5,01], {00625}, Horizon -[5,02], {01000}, Comet -[5,03], {00601}, Apollo -[5,04], {00290}, Stardust -[5,05], {00272}, Tectonic -[5,06], {00672}, Orion -[5,07], {00714}, Spectrum -[5,08], {00695}, Mirage -[5,09], {00440}, Phoenix -[5,10], {00591}, Gravity -[5,11], {00167}, Cascade -[6,01], {00716}, Crystal -[6,02], {00834}, Halo -[6,03], {00259}, Cosmos -[6,04], {00765}, Voyager -[6,05], {00833}, Orion -[6,06], {00640}, Twilight -[6,07], {00420}, Horizon -[6,08], {00581}, Matrix -[6,09], {00278}, Infinity -[6,10], {00759}, Meteor -[6,11], {00951}, Neptune -[7,01], {00279}, Beacon -[7,02], {00281}, Horizon -[7,03], {00581}, Solstice -[7,04], {00762}, Echo -[7,05], {00356}, Nexus -[7,06], {00206}, Titan -[7,07], {00925}, Vortex -[7,08], {00765}, Horizon -[7,09], {00998}, Circuit -[7,10], {00000}, UNUSED -[7,11], {00980}, Solstice -[8,01], {00452}, Arcadia -[8,02], {00299}, Zenith -[8,03], {00190}, Aero -[8,04], {00456}, Radiance -[8,05], {00631}, Eclipse -[8,06], {00254}, Aurora -[8,07], {00613}, Nova -[8,08], {00000}, UNUSED -[8,09], {00734}, Cyclone -[8,10], {00000}, UNUSED -[8,11], {00187}, Meteor diff --git a/86Containers.txt b/86Containers.txt deleted file mode 100644 index 72b8e3a..0000000 --- a/86Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00212}, Apollo -[1,02], {00543}, Nova -[1,03], {00664}, Forge -[1,04], {00516}, Crystal -[1,05], {00796}, Crystal -[1,06], {00592}, Eclipse -[1,07], {00603}, Voyager -[1,08], {00113}, Everest -[1,09], {00991}, Zenith -[1,10], {00583}, Everest -[1,11], {00548}, Tesla -[2,01], {00756}, Cosmos -[2,02], {00700}, Odyssey -[2,03], {00851}, Meteor -[2,04], {00241}, Echo -[2,05], {00747}, Eclipse -[2,06], {00703}, Forge -[2,07], {00835}, Matrix -[2,08], {00925}, Cascade -[2,09], {00965}, Odyssey -[2,10], {00969}, Mirage -[2,11], {00565}, Horizon -[3,01], {00985}, Cascade -[3,02], {00109}, Inferno -[3,03], {00493}, Neptune -[3,04], {00252}, Cascade -[3,05], {00734}, Quantum -[3,06], {00949}, Polaris -[3,07], {00365}, Echo -[3,08], {00114}, Blaze -[3,09], {00819}, Matrix -[3,10], {00136}, Blaze -[3,11], {00578}, Horizon -[4,01], {00614}, Drift -[4,02], {00107}, Odyssey -[4,03], {00123}, Eclipse -[4,04], {00945}, Ember -[4,05], {00543}, Vortex -[4,06], {00953}, Spectrum -[4,07], {00461}, Dynamo -[4,08], {00461}, Mirage -[4,09], {00147}, Lunar -[4,10], {00945}, Halo -[4,11], {00382}, Voyager -[5,01], {00675}, Odyssey -[5,02], {00387}, Spectrum -[5,03], {00425}, Odyssey -[5,04], {00534}, Phoenix -[5,05], {00431}, Dynamo -[5,06], {00237}, Nexus -[5,07], {00716}, Radiance -[5,08], {00423}, Meteor -[5,09], {00617}, Cascade -[5,10], {00214}, Zephyr -[5,11], {00170}, Eclipse -[6,01], {00370}, Vertex -[6,02], {00148}, Radiance -[6,03], {00720}, Singularity -[6,04], {00768}, Matrix -[6,05], {00910}, Eclipse -[6,06], {00426}, Nova -[6,07], {00602}, Shadow -[6,08], {00197}, Phoenix -[6,09], {00316}, Circuit -[6,10], {00408}, Everest -[6,11], {00544}, Eclipse -[7,01], {00783}, Shard -[7,02], {00239}, Halo -[7,03], {00000}, UNUSED -[7,04], {00472}, Solstice -[7,05], {00795}, Echo -[7,06], {00946}, Echo -[7,07], {00460}, Meteor -[7,08], {00646}, Comet -[7,09], {00258}, Glacier -[7,10], {00184}, Cyclone -[7,11], {00913}, Forge -[8,01], {00490}, Eclipse -[8,02], {00910}, Echo -[8,03], {00000}, UNUSED -[8,04], {00744}, Axis -[8,05], {00712}, Lunar -[8,06], {00961}, Cosmos -[8,07], {00797}, Apollo -[8,08], {00963}, Spectrum -[8,09], {00855}, Neptune -[8,10], {00624}, Titan -[8,11], {00652}, Ember diff --git a/87Containers.txt b/87Containers.txt deleted file mode 100644 index 9f3cbf7..0000000 --- a/87Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00964}, Forge -[1,02], {00301}, Cyclone -[1,03], {00196}, Vortex -[1,04], {00415}, Atlas -[1,05], {00396}, Orion -[1,06], {00835}, Crystal -[1,07], {00511}, Nimbus -[1,08], {00740}, Horizon -[1,09], {00693}, Cyclone -[1,10], {00489}, Tesla -[1,11], {00405}, Spectrum -[2,01], {00354}, Polaris -[2,02], {00800}, Zenith -[2,03], {00888}, Phoenix -[2,04], {00588}, Cosmos -[2,05], {00146}, Nexus -[2,06], {00355}, Mirage -[2,07], {00345}, Zenith -[2,08], {00862}, Horizon -[2,09], {00953}, Odyssey -[2,10], {00403}, Forge -[2,11], {00330}, Nexus -[3,01], {00226}, Nova -[3,02], {00404}, Inferno -[3,03], {00822}, Axis -[3,04], {00400}, Beacon -[3,05], {00204}, Echo -[3,06], {00749}, Cyclone -[3,07], {00909}, Singularity -[3,08], {00204}, Echo -[3,09], {00915}, Eclipse -[3,10], {00393}, Tectonic -[3,11], {00930}, Odyssey -[4,01], {00430}, Polaris -[4,02], {00219}, Nova -[4,03], {00926}, Echo -[4,04], {00171}, Nimbus -[4,05], {00645}, Solstice -[4,06], {00646}, Comet -[4,07], {00906}, Sol -[4,08], {00203}, Voyager -[4,09], {00736}, Spectrum -[4,10], {00886}, Solstice -[4,11], {00797}, Atlas -[5,01], {00739}, Comet -[5,02], {00861}, Shadow -[5,03], {00308}, Orion -[5,04], {00752}, Eclipse -[5,05], {00213}, Polaris -[5,06], {00840}, Dynamo -[5,07], {00329}, Inferno -[5,08], {00346}, Titan -[5,09], {00584}, Forge -[5,10], {00266}, Radiance -[5,11], {00678}, Nimbus -[6,01], {00231}, Zenith -[6,02], {00872}, Singularity -[6,03], {00721}, Tectonic -[6,04], {00944}, Horizon -[6,05], {00647}, Tesla -[6,06], {00214}, Axis -[6,07], {00341}, Polaris -[6,08], {00699}, Polaris -[6,09], {00698}, Radiance -[6,10], {00536}, Atlas -[6,11], {00785}, Apollo -[7,01], {00721}, Inferno -[7,02], {00295}, Inferno -[7,03], {00585}, Axis -[7,04], {00546}, Solstice -[7,05], {00394}, Vortex -[7,06], {00890}, Nimbus -[7,07], {00107}, Titan -[7,08], {00319}, Zenith -[7,09], {00950}, Velocity -[7,10], {00895}, Meteor -[7,11], {00189}, Zephyr -[8,01], {00512}, Glacier -[8,02], {00196}, Cosmos -[8,03], {00828}, Velocity -[8,04], {00924}, Drift -[8,05], {00773}, Comet -[8,06], {00476}, Mirage -[8,07], {00297}, Radiance -[8,08], {00571}, Circuit -[8,09], {00690}, Phoenix -[8,10], {00753}, Arcadia -[8,11], {00000}, UNUSED diff --git a/88Containers.txt b/88Containers.txt deleted file mode 100644 index caf147b..0000000 --- a/88Containers.txt +++ /dev/null @@ -1,88 +0,0 @@ -[1,01], {00884}, Vertex -[1,02], {00105}, Spectrum -[1,03], {00347}, Tesla -[1,04], {00190}, Blaze -[1,05], {00873}, Odyssey -[1,06], {00160}, Atlas -[1,07], {00554}, Singularity -[1,08], {00360}, Atlas -[1,09], {00516}, Ember -[1,10], {00134}, Cosmos -[1,11], {00272}, Ember -[2,01], {00153}, Nimbus -[2,02], {00867}, Velocity -[2,03], {00110}, Spectrum -[2,04], {00524}, Beacon -[2,05], {00236}, Zenith -[2,06], {00411}, Zephyr -[2,07], {00777}, Shard -[2,08], {00769}, Ember -[2,09], {00123}, Matrix -[2,10], {00289}, Stardust -[2,11], {00934}, Zenith -[3,01], {00607}, Phoenix -[3,02], {00906}, Singularity -[3,03], {00821}, Horizon -[3,04], {00583}, Twilight -[3,05], {00899}, Phoenix -[3,06], {00440}, Eclipse -[3,07], {00434}, Zephyr -[3,08], {00624}, Dynamo -[3,09], {00850}, Mirage -[3,10], {00320}, Twilight -[3,11], {00223}, Horizon -[4,01], {00196}, Stardust -[4,02], {00221}, Vertex -[4,03], {00446}, Echo -[4,04], {00237}, Vertex -[4,05], {00318}, Mirage -[4,06], {00910}, Circuit -[4,07], {00213}, Phoenix -[4,08], {00950}, Drift -[4,09], {00446}, Dynamo -[4,10], {00638}, Prism -[4,11], {00377}, Eclipse -[5,01], {00373}, Voyager -[5,02], {00187}, Solstice -[5,03], {00629}, Nimbus -[5,04], {00418}, Comet -[5,05], {00896}, Vertex -[5,06], {00375}, Odyssey -[5,07], {00437}, Dynamo -[5,08], {00521}, Forge -[5,09], {00310}, Cyclone -[5,10], {00124}, Atlas -[5,11], {00740}, Velocity -[6,01], {00604}, Mirage -[6,02], {00689}, Radiance -[6,03], {00480}, Vertex -[6,04], {00536}, Tesla -[6,05], {00135}, Zenith -[6,06], {00598}, Blaze -[6,07], {00832}, Circuit -[6,08], {00247}, Quantum -[6,09], {00344}, Twilight -[6,10], {00359}, Ember -[6,11], {00132}, Glider -[7,01], {00231}, Tectonic -[7,02], {00147}, Sol -[7,03], {00805}, Titan -[7,04], {00621}, Prism -[7,05], {00834}, Circuit -[7,06], {00848}, Cascade -[7,07], {00977}, Zenith -[7,08], {00655}, Echo -[7,09], {00730}, Circuit -[7,10], {00109}, Prism -[7,11], {00609}, Stardust -[8,01], {00648}, Ember -[8,02], {00476}, Horizon -[8,03], {00453}, Odyssey -[8,04], {00910}, Vertex -[8,05], {00460}, Vertex -[8,06], {00947}, Cosmos -[8,07], {00295}, Spectrum -[8,08], {00205}, Singularity -[8,09], {00846}, Orion -[8,10], {00565}, Cyclone -[8,11], {00529}, Meteor From a388db6e5be8f9e84aea1e01f610b55cb7ebb173 Mon Sep 17 00:00:00 2001 From: issy16 Date: Thu, 12 Dec 2024 19:13:51 -0800 Subject: [PATCH 5/8] test cases --- Data/manifests/20Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/21Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/22Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/23Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/24Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/26Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/27Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/28Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/29Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/30Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/31Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/32Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/33Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/34Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/35Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/36Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/37Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/38Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/39Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/40Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/41Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/42Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/43Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/44Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/45Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/46Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/47Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/48Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/49Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/50Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/51Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/52Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/53Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/54Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/55Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/56Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/57Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/58Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/59Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/60Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/61Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/62Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/63Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/64Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/65Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/66Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/67Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/68Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/69Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/70Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/71Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/72Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/73Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/74Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/75Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/76Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/77Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/78Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/79Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/80Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/81Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/82Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/83Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/84Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/85Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/86Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/87Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/88Containers.txt | 176 ++++++++++++++++---------------- Data/manifests/add0.py | 39 +++++++ 69 files changed, 6023 insertions(+), 5984 deletions(-) create mode 100644 Data/manifests/add0.py diff --git a/Data/manifests/20Containers.txt b/Data/manifests/20Containers.txt index 92e78dd..12c27cd 100644 --- a/Data/manifests/20Containers.txt +++ b/Data/manifests/20Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00000}, UNUSED -[1,02], {00504}, Atlas -[1,03], {00392}, Shard -[1,04], {00000}, UNUSED -[1,05], {00407}, Halo -[1,06], {00466}, Vertex -[1,07], {00731}, Atlas -[1,08], {00277}, Orion -[1,09], {00391}, Meteor -[1,10], {00879}, Axis -[1,11], {00645}, Orion -[2,01], {00000}, UNUSED -[2,02], {00751}, Comet -[2,03], {00809}, Nimbus -[2,04], {00000}, UNUSED -[2,05], {00238}, Glider -[2,06], {00000}, UNUSED -[2,07], {00840}, Dynamo -[2,08], {00225}, Vertex -[2,09], {00000}, UNUSED -[2,10], {00751}, Nimbus -[2,11], {00827}, Twilight -[3,01], {00000}, UNUSED -[3,02], {00000}, UNUSED -[3,03], {00000}, UNUSED -[3,04], {00000}, UNUSED -[3,05], {00756}, Shard -[3,06], {00000}, UNUSED -[3,07], {00000}, UNUSED -[3,08], {00253}, Nimbus -[3,09], {00000}, UNUSED -[3,10], {00731}, Spectrum -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00804}, Halo -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00000}, UNUSED +[01,02], {00504}, Atlas +[01,03], {00392}, Shard +[01,04], {00000}, UNUSED +[01,05], {00407}, Halo +[01,06], {00466}, Vertex +[01,07], {00731}, Atlas +[01,08], {00277}, Orion +[01,09], {00391}, Meteor +[01,10], {00879}, Axis +[01,11], {00645}, Orion +[02,01], {00000}, UNUSED +[02,02], {00751}, Comet +[02,03], {00809}, Nimbus +[02,04], {00000}, UNUSED +[02,05], {00238}, Glider +[02,06], {00000}, UNUSED +[02,07], {00840}, Dynamo +[02,08], {00225}, Vertex +[02,09], {00000}, UNUSED +[02,10], {00751}, Nimbus +[02,11], {00827}, Twilight +[03,01], {00000}, UNUSED +[03,02], {00000}, UNUSED +[03,03], {00000}, UNUSED +[03,04], {00000}, UNUSED +[03,05], {00756}, Shard +[03,06], {00000}, UNUSED +[03,07], {00000}, UNUSED +[03,08], {00253}, Nimbus +[03,09], {00000}, UNUSED +[03,10], {00731}, Spectrum +[03,11], {00000}, UNUSED +[04,01], {00000}, UNUSED +[04,02], {00000}, UNUSED +[04,03], {00000}, UNUSED +[04,04], {00000}, UNUSED +[04,05], {00000}, UNUSED +[04,06], {00000}, UNUSED +[04,07], {00000}, UNUSED +[04,08], {00000}, UNUSED +[04,09], {00000}, UNUSED +[04,10], {00804}, Halo +[04,11], {00000}, UNUSED +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00000}, UNUSED +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/21Containers.txt b/Data/manifests/21Containers.txt index 8afc238..c1a3260 100644 --- a/Data/manifests/21Containers.txt +++ b/Data/manifests/21Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00968}, Eclipse -[1,02], {00399}, Horizon -[1,03], {00633}, Glacier -[1,04], {00601}, Gravity -[1,05], {00000}, UNUSED -[1,06], {00900}, Crystal -[1,07], {00619}, Zephyr -[1,08], {00213}, Gravity -[1,09], {00000}, UNUSED -[1,10], {00937}, Aero -[1,11], {00177}, Glacier -[2,01], {00975}, Infinity -[2,02], {00212}, Spectrum -[2,03], {00000}, UNUSED -[2,04], {00000}, UNUSED -[2,05], {00000}, UNUSED -[2,06], {00284}, Borealis -[2,07], {00159}, Lunar -[2,08], {00579}, Nimbus -[2,09], {00000}, UNUSED -[2,10], {00880}, Velocity -[2,11], {00215}, Stardust -[3,01], {00000}, UNUSED -[3,02], {00000}, UNUSED -[3,03], {00000}, UNUSED -[3,04], {00000}, UNUSED -[3,05], {00000}, UNUSED -[3,06], {00300}, Solstice -[3,07], {00000}, UNUSED -[3,08], {00630}, Crystal -[3,09], {00000}, UNUSED -[3,10], {00000}, UNUSED -[3,11], {00853}, Circuit -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00677}, Dynamo -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00430}, Eclipse -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00968}, Eclipse +[01,02], {00399}, Horizon +[01,03], {00633}, Glacier +[01,04], {00601}, Gravity +[01,05], {00000}, UNUSED +[01,06], {00900}, Crystal +[01,07], {00619}, Zephyr +[01,08], {00213}, Gravity +[01,09], {00000}, UNUSED +[01,10], {00937}, Aero +[01,11], {00177}, Glacier +[02,01], {00975}, Infinity +[02,02], {00212}, Spectrum +[02,03], {00000}, UNUSED +[02,04], {00000}, UNUSED +[02,05], {00000}, UNUSED +[02,06], {00284}, Borealis +[02,07], {00159}, Lunar +[02,08], {00579}, Nimbus +[02,09], {00000}, UNUSED +[02,10], {00880}, Velocity +[02,11], {00215}, Stardust +[03,01], {00000}, UNUSED +[03,02], {00000}, UNUSED +[03,03], {00000}, UNUSED +[03,04], {00000}, UNUSED +[03,05], {00000}, UNUSED +[03,06], {00300}, Solstice +[03,07], {00000}, UNUSED +[03,08], {00630}, Crystal +[03,09], {00000}, UNUSED +[03,10], {00000}, UNUSED +[03,11], {00853}, Circuit +[04,01], {00000}, UNUSED +[04,02], {00000}, UNUSED +[04,03], {00000}, UNUSED +[04,04], {00000}, UNUSED +[04,05], {00000}, UNUSED +[04,06], {00000}, UNUSED +[04,07], {00000}, UNUSED +[04,08], {00000}, UNUSED +[04,09], {00000}, UNUSED +[04,10], {00000}, UNUSED +[04,11], {00677}, Dynamo +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00000}, UNUSED +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00430}, Eclipse +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/22Containers.txt b/Data/manifests/22Containers.txt index f8055f8..aa86e49 100644 --- a/Data/manifests/22Containers.txt +++ b/Data/manifests/22Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00822}, Horizon -[1,02], {00000}, UNUSED -[1,03], {00127}, Eclipse -[1,04], {00994}, Shadow -[1,05], {00625}, Shadow -[1,06], {00363}, Nova -[1,07], {00258}, Zephyr -[1,08], {00800}, Axis -[1,09], {00000}, UNUSED -[1,10], {00688}, Neptune -[1,11], {00299}, Matrix -[2,01], {00822}, Spectrum -[2,02], {00000}, UNUSED -[2,03], {00000}, UNUSED -[2,04], {00631}, Solstice -[2,05], {00000}, UNUSED -[2,06], {00975}, Eclipse -[2,07], {00000}, UNUSED -[2,08], {00874}, Infinity -[2,09], {00000}, UNUSED -[2,10], {00483}, Halo -[2,11], {00394}, Aurora -[3,01], {00832}, Voyager -[3,02], {00000}, UNUSED -[3,03], {00000}, UNUSED -[3,04], {00218}, Meteor -[3,05], {00000}, UNUSED -[3,06], {00000}, UNUSED -[3,07], {00000}, UNUSED -[3,08], {00000}, UNUSED -[3,09], {00000}, UNUSED -[3,10], {00400}, Cosmos -[3,11], {00000}, UNUSED -[4,01], {00234}, Horizon -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00950}, Neptune -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00455}, Shadow -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00180}, Horizon -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00822}, Horizon +[01,02], {00000}, UNUSED +[01,03], {00127}, Eclipse +[01,04], {00994}, Shadow +[01,05], {00625}, Shadow +[01,06], {00363}, Nova +[01,07], {00258}, Zephyr +[01,08], {00800}, Axis +[01,09], {00000}, UNUSED +[01,10], {00688}, Neptune +[01,11], {00299}, Matrix +[02,01], {00822}, Spectrum +[02,02], {00000}, UNUSED +[02,03], {00000}, UNUSED +[02,04], {00631}, Solstice +[02,05], {00000}, UNUSED +[02,06], {00975}, Eclipse +[02,07], {00000}, UNUSED +[02,08], {00874}, Infinity +[02,09], {00000}, UNUSED +[02,10], {00483}, Halo +[02,11], {00394}, Aurora +[03,01], {00832}, Voyager +[03,02], {00000}, UNUSED +[03,03], {00000}, UNUSED +[03,04], {00218}, Meteor +[03,05], {00000}, UNUSED +[03,06], {00000}, UNUSED +[03,07], {00000}, UNUSED +[03,08], {00000}, UNUSED +[03,09], {00000}, UNUSED +[03,10], {00400}, Cosmos +[03,11], {00000}, UNUSED +[04,01], {00234}, Horizon +[04,02], {00000}, UNUSED +[04,03], {00000}, UNUSED +[04,04], {00950}, Neptune +[04,05], {00000}, UNUSED +[04,06], {00000}, UNUSED +[04,07], {00000}, UNUSED +[04,08], {00000}, UNUSED +[04,09], {00000}, UNUSED +[04,10], {00455}, Shadow +[04,11], {00000}, UNUSED +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00000}, UNUSED +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00180}, Horizon +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/23Containers.txt b/Data/manifests/23Containers.txt index 837beec..0c71bcf 100644 --- a/Data/manifests/23Containers.txt +++ b/Data/manifests/23Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00282}, Twilight -[1,02], {00283}, Lunar -[1,03], {00364}, Gravity -[1,04], {00000}, UNUSED -[1,05], {00183}, Shadow -[1,06], {00949}, Horizon -[1,07], {00773}, Eclipse -[1,08], {00226}, Neptune -[1,09], {00296}, Velocity -[1,10], {00000}, UNUSED -[1,11], {00980}, Tectonic -[2,01], {00858}, Orion -[2,02], {00889}, Dynamo -[2,03], {00360}, Horizon -[2,04], {00000}, UNUSED -[2,05], {00615}, Ember -[2,06], {00000}, UNUSED -[2,07], {00580}, Velocity -[2,08], {00113}, Borealis -[2,09], {00665}, Shard -[2,10], {00000}, UNUSED -[2,11], {00269}, Odyssey -[3,01], {00000}, UNUSED -[3,02], {00000}, UNUSED -[3,03], {00000}, UNUSED -[3,04], {00000}, UNUSED -[3,05], {00000}, UNUSED -[3,06], {00000}, UNUSED -[3,07], {00410}, Twilight -[3,08], {00000}, UNUSED -[3,09], {00791}, Echo -[3,10], {00000}, UNUSED -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00726}, Echo -[4,08], {00000}, UNUSED -[4,09], {00247}, Cyclone -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00678}, Dynamo -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00639}, Odyssey -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00282}, Twilight +[01,02], {00283}, Lunar +[01,03], {00364}, Gravity +[01,04], {00000}, UNUSED +[01,05], {00183}, Shadow +[01,06], {00949}, Horizon +[01,07], {00773}, Eclipse +[01,08], {00226}, Neptune +[01,09], {00296}, Velocity +[01,10], {00000}, UNUSED +[01,11], {00980}, Tectonic +[02,01], {00858}, Orion +[02,02], {00889}, Dynamo +[02,03], {00360}, Horizon +[02,04], {00000}, UNUSED +[02,05], {00615}, Ember +[02,06], {00000}, UNUSED +[02,07], {00580}, Velocity +[02,08], {00113}, Borealis +[02,09], {00665}, Shard +[02,10], {00000}, UNUSED +[02,11], {00269}, Odyssey +[03,01], {00000}, UNUSED +[03,02], {00000}, UNUSED +[03,03], {00000}, UNUSED +[03,04], {00000}, UNUSED +[03,05], {00000}, UNUSED +[03,06], {00000}, UNUSED +[03,07], {00410}, Twilight +[03,08], {00000}, UNUSED +[03,09], {00791}, Echo +[03,10], {00000}, UNUSED +[03,11], {00000}, UNUSED +[04,01], {00000}, UNUSED +[04,02], {00000}, UNUSED +[04,03], {00000}, UNUSED +[04,04], {00000}, UNUSED +[04,05], {00000}, UNUSED +[04,06], {00000}, UNUSED +[04,07], {00726}, Echo +[04,08], {00000}, UNUSED +[04,09], {00247}, Cyclone +[04,10], {00000}, UNUSED +[04,11], {00000}, UNUSED +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00000}, UNUSED +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00678}, Dynamo +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00639}, Odyssey +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/24Containers.txt b/Data/manifests/24Containers.txt index 2310e7d..1623f96 100644 --- a/Data/manifests/24Containers.txt +++ b/Data/manifests/24Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00888}, Zenith -[1,02], {00132}, Lunar -[1,03], {00795}, Circuit -[1,04], {00655}, Stardust -[1,05], {00114}, Vertex -[1,06], {00422}, Inferno -[1,07], {00521}, Drift -[1,08], {00210}, Arcadia -[1,09], {00416}, Velocity -[1,10], {00785}, Quantum -[1,11], {00326}, Eclipse -[2,01], {00000}, UNUSED -[2,02], {00000}, UNUSED -[2,03], {00187}, Quantum -[2,04], {00711}, Orion -[2,05], {00501}, Sol -[2,06], {00476}, Blaze -[2,07], {00107}, Singularity -[2,08], {00728}, Zephyr -[2,09], {00000}, UNUSED -[2,10], {00143}, Matrix -[2,11], {00417}, Cyclone -[3,01], {00000}, UNUSED -[3,02], {00000}, UNUSED -[3,03], {00738}, Arcadia -[3,04], {00000}, UNUSED -[3,05], {00355}, Shadow -[3,06], {00000}, UNUSED -[3,07], {00319}, Aurora -[3,08], {00000}, UNUSED -[3,09], {00000}, UNUSED -[3,10], {00371}, Radiance -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00199}, Nexus -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00888}, Zenith +[01,02], {00132}, Lunar +[01,03], {00795}, Circuit +[01,04], {00655}, Stardust +[01,05], {00114}, Vertex +[01,06], {00422}, Inferno +[01,07], {00521}, Drift +[01,08], {00210}, Arcadia +[01,09], {00416}, Velocity +[01,10], {00785}, Quantum +[01,11], {00326}, Eclipse +[02,01], {00000}, UNUSED +[02,02], {00000}, UNUSED +[02,03], {00187}, Quantum +[02,04], {00711}, Orion +[02,05], {00501}, Sol +[02,06], {00476}, Blaze +[02,07], {00107}, Singularity +[02,08], {00728}, Zephyr +[02,09], {00000}, UNUSED +[02,10], {00143}, Matrix +[02,11], {00417}, Cyclone +[03,01], {00000}, UNUSED +[03,02], {00000}, UNUSED +[03,03], {00738}, Arcadia +[03,04], {00000}, UNUSED +[03,05], {00355}, Shadow +[03,06], {00000}, UNUSED +[03,07], {00319}, Aurora +[03,08], {00000}, UNUSED +[03,09], {00000}, UNUSED +[03,10], {00371}, Radiance +[03,11], {00000}, UNUSED +[04,01], {00000}, UNUSED +[04,02], {00000}, UNUSED +[04,03], {00000}, UNUSED +[04,04], {00000}, UNUSED +[04,05], {00000}, UNUSED +[04,06], {00000}, UNUSED +[04,07], {00000}, UNUSED +[04,08], {00000}, UNUSED +[04,09], {00000}, UNUSED +[04,10], {00199}, Nexus +[04,11], {00000}, UNUSED +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00000}, UNUSED +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/26Containers.txt b/Data/manifests/26Containers.txt index a83197b..18645fd 100644 --- a/Data/manifests/26Containers.txt +++ b/Data/manifests/26Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00371}, Aero -[1,02], {00955}, Spectrum -[1,03], {00894}, Circuit -[1,04], {00495}, Everest -[1,05], {00439}, Echo -[1,06], {00385}, Meteor -[1,07], {00103}, Glider -[1,08], {00568}, Beacon -[1,09], {00333}, Axis -[1,10], {00875}, Matrix -[1,11], {00481}, Ember -[2,01], {00000}, UNUSED -[2,02], {00320}, Cascade -[2,03], {00117}, Velocity -[2,04], {00985}, Vertex -[2,05], {00000}, UNUSED -[2,06], {00000}, UNUSED -[2,07], {00000}, UNUSED -[2,08], {00329}, Nimbus -[2,09], {00186}, Tesla -[2,10], {00820}, Glacier -[2,11], {00225}, Axis -[3,01], {00000}, UNUSED -[3,02], {00000}, UNUSED -[3,03], {00000}, UNUSED -[3,04], {00170}, Comet -[3,05], {00000}, UNUSED -[3,06], {00000}, UNUSED -[3,07], {00000}, UNUSED -[3,08], {00780}, Glider -[3,09], {00239}, Tesla -[3,10], {00654}, Ember -[3,11], {00695}, Titan -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00000}, UNUSED -[4,08], {00425}, Nexus -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00332}, Velocity -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00768}, Nexus -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00371}, Aero +[01,02], {00955}, Spectrum +[01,03], {00894}, Circuit +[01,04], {00495}, Everest +[01,05], {00439}, Echo +[01,06], {00385}, Meteor +[01,07], {00103}, Glider +[01,08], {00568}, Beacon +[01,09], {00333}, Axis +[01,10], {00875}, Matrix +[01,11], {00481}, Ember +[02,01], {00000}, UNUSED +[02,02], {00320}, Cascade +[02,03], {00117}, Velocity +[02,04], {00985}, Vertex +[02,05], {00000}, UNUSED +[02,06], {00000}, UNUSED +[02,07], {00000}, UNUSED +[02,08], {00329}, Nimbus +[02,09], {00186}, Tesla +[02,10], {00820}, Glacier +[02,11], {00225}, Axis +[03,01], {00000}, UNUSED +[03,02], {00000}, UNUSED +[03,03], {00000}, UNUSED +[03,04], {00170}, Comet +[03,05], {00000}, UNUSED +[03,06], {00000}, UNUSED +[03,07], {00000}, UNUSED +[03,08], {00780}, Glider +[03,09], {00239}, Tesla +[03,10], {00654}, Ember +[03,11], {00695}, Titan +[04,01], {00000}, UNUSED +[04,02], {00000}, UNUSED +[04,03], {00000}, UNUSED +[04,04], {00000}, UNUSED +[04,05], {00000}, UNUSED +[04,06], {00000}, UNUSED +[04,07], {00000}, UNUSED +[04,08], {00425}, Nexus +[04,09], {00000}, UNUSED +[04,10], {00000}, UNUSED +[04,11], {00332}, Velocity +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00000}, UNUSED +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00000}, UNUSED +[05,08], {00768}, Nexus +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/27Containers.txt b/Data/manifests/27Containers.txt index 014f857..eb5675e 100644 --- a/Data/manifests/27Containers.txt +++ b/Data/manifests/27Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00127}, Zenith -[1,02], {00961}, Everest -[1,03], {00618}, Sol -[1,04], {00395}, Cosmos -[1,05], {00576}, Stardust -[1,06], {00401}, Zephyr -[1,07], {00532}, Beacon -[1,08], {00000}, UNUSED -[1,09], {00734}, Apollo -[1,10], {00220}, Solstice -[1,11], {00238}, Vertex -[2,01], {00655}, Tesla -[2,02], {00538}, Dynamo -[2,03], {00000}, UNUSED -[2,04], {00539}, Velocity -[2,05], {00931}, Inferno -[2,06], {00905}, Velocity -[2,07], {00717}, Ember -[2,08], {00000}, UNUSED -[2,09], {00848}, Apollo -[2,10], {00486}, Tesla -[2,11], {00186}, Stardust -[3,01], {00000}, UNUSED -[3,02], {00000}, UNUSED -[3,03], {00000}, UNUSED -[3,04], {00878}, Voyager -[3,05], {00612}, Beacon -[3,06], {00457}, Matrix -[3,07], {00783}, Tectonic -[3,08], {00000}, UNUSED -[3,09], {00000}, UNUSED -[3,10], {00158}, Glider -[3,11], {00387}, Crystal -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00900}, Mirage -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00942}, Nimbus -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00127}, Zenith +[01,02], {00961}, Everest +[01,03], {00618}, Sol +[01,04], {00395}, Cosmos +[01,05], {00576}, Stardust +[01,06], {00401}, Zephyr +[01,07], {00532}, Beacon +[01,08], {00000}, UNUSED +[01,09], {00734}, Apollo +[01,10], {00220}, Solstice +[01,11], {00238}, Vertex +[02,01], {00655}, Tesla +[02,02], {00538}, Dynamo +[02,03], {00000}, UNUSED +[02,04], {00539}, Velocity +[02,05], {00931}, Inferno +[02,06], {00905}, Velocity +[02,07], {00717}, Ember +[02,08], {00000}, UNUSED +[02,09], {00848}, Apollo +[02,10], {00486}, Tesla +[02,11], {00186}, Stardust +[03,01], {00000}, UNUSED +[03,02], {00000}, UNUSED +[03,03], {00000}, UNUSED +[03,04], {00878}, Voyager +[03,05], {00612}, Beacon +[03,06], {00457}, Matrix +[03,07], {00783}, Tectonic +[03,08], {00000}, UNUSED +[03,09], {00000}, UNUSED +[03,10], {00158}, Glider +[03,11], {00387}, Crystal +[04,01], {00000}, UNUSED +[04,02], {00000}, UNUSED +[04,03], {00000}, UNUSED +[04,04], {00000}, UNUSED +[04,05], {00000}, UNUSED +[04,06], {00900}, Mirage +[04,07], {00000}, UNUSED +[04,08], {00000}, UNUSED +[04,09], {00000}, UNUSED +[04,10], {00000}, UNUSED +[04,11], {00942}, Nimbus +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00000}, UNUSED +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/28Containers.txt b/Data/manifests/28Containers.txt index c411f9b..e8cab3c 100644 --- a/Data/manifests/28Containers.txt +++ b/Data/manifests/28Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00744}, Echo -[1,02], {00716}, Zenith -[1,03], {00331}, Tectonic -[1,04], {00250}, Orion -[1,05], {00321}, Orion -[1,06], {00287}, Twilight -[1,07], {00498}, Spectrum -[1,08], {00415}, Zenith -[1,09], {00325}, Inferno -[1,10], {00866}, Shadow -[1,11], {00920}, Vortex -[2,01], {00276}, Cosmos -[2,02], {00283}, Gravity -[2,03], {00280}, Lunar -[2,04], {00000}, UNUSED -[2,05], {00944}, Atlas -[2,06], {00753}, Zenith -[2,07], {00901}, Zenith -[2,08], {00000}, UNUSED -[2,09], {00000}, UNUSED -[2,10], {00131}, Shadow -[2,11], {00779}, Comet -[3,01], {00567}, Vertex -[3,02], {00000}, UNUSED -[3,03], {00467}, Vortex -[3,04], {00000}, UNUSED -[3,05], {00971}, Inferno -[3,06], {00902}, Axis -[3,07], {00956}, Radiance -[3,08], {00000}, UNUSED -[3,09], {00000}, UNUSED -[3,10], {00000}, UNUSED -[3,11], {00680}, Vertex -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00416}, Voyager -[4,04], {00000}, UNUSED -[4,05], {00836}, Cosmos -[4,06], {00000}, UNUSED -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00402}, Halo -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00744}, Echo +[01,02], {00716}, Zenith +[01,03], {00331}, Tectonic +[01,04], {00250}, Orion +[01,05], {00321}, Orion +[01,06], {00287}, Twilight +[01,07], {00498}, Spectrum +[01,08], {00415}, Zenith +[01,09], {00325}, Inferno +[01,10], {00866}, Shadow +[01,11], {00920}, Vortex +[02,01], {00276}, Cosmos +[02,02], {00283}, Gravity +[02,03], {00280}, Lunar +[02,04], {00000}, UNUSED +[02,05], {00944}, Atlas +[02,06], {00753}, Zenith +[02,07], {00901}, Zenith +[02,08], {00000}, UNUSED +[02,09], {00000}, UNUSED +[02,10], {00131}, Shadow +[02,11], {00779}, Comet +[03,01], {00567}, Vertex +[03,02], {00000}, UNUSED +[03,03], {00467}, Vortex +[03,04], {00000}, UNUSED +[03,05], {00971}, Inferno +[03,06], {00902}, Axis +[03,07], {00956}, Radiance +[03,08], {00000}, UNUSED +[03,09], {00000}, UNUSED +[03,10], {00000}, UNUSED +[03,11], {00680}, Vertex +[04,01], {00000}, UNUSED +[04,02], {00000}, UNUSED +[04,03], {00416}, Voyager +[04,04], {00000}, UNUSED +[04,05], {00836}, Cosmos +[04,06], {00000}, UNUSED +[04,07], {00000}, UNUSED +[04,08], {00000}, UNUSED +[04,09], {00000}, UNUSED +[04,10], {00000}, UNUSED +[04,11], {00402}, Halo +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00000}, UNUSED +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/29Containers.txt b/Data/manifests/29Containers.txt index 3ebe66c..c35aeb4 100644 --- a/Data/manifests/29Containers.txt +++ b/Data/manifests/29Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00821}, Orion -[1,02], {00519}, Velocity -[1,03], {00403}, Zenith -[1,04], {00564}, Titan -[1,05], {00870}, Horizon -[1,06], {00625}, Zenith -[1,07], {00660}, Cascade -[1,08], {00677}, Zenith -[1,09], {00132}, Vortex -[1,10], {00660}, Forge -[1,11], {00508}, Zenith -[2,01], {00111}, Horizon -[2,02], {00000}, UNUSED -[2,03], {00139}, Nimbus -[2,04], {00264}, Infinity -[2,05], {00000}, UNUSED -[2,06], {00000}, UNUSED -[2,07], {00575}, Odyssey -[2,08], {00688}, Cosmos -[2,09], {00899}, Aurora -[2,10], {00372}, Arcadia -[2,11], {00719}, Zenith -[3,01], {00651}, Cascade -[3,02], {00000}, UNUSED -[3,03], {00000}, UNUSED -[3,04], {00000}, UNUSED -[3,05], {00000}, UNUSED -[3,06], {00000}, UNUSED -[3,07], {00000}, UNUSED -[3,08], {00000}, UNUSED -[3,09], {00507}, Circuit -[3,10], {00219}, Cosmos -[3,11], {01000}, Lunar -[4,01], {00967}, Neptune -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00649}, Sol -[4,10], {00209}, Zephyr -[4,11], {00143}, Velocity -[5,01], {00272}, Eclipse -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00196}, Mirage -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00821}, Orion +[01,02], {00519}, Velocity +[01,03], {00403}, Zenith +[01,04], {00564}, Titan +[01,05], {00870}, Horizon +[01,06], {00625}, Zenith +[01,07], {00660}, Cascade +[01,08], {00677}, Zenith +[01,09], {00132}, Vortex +[01,10], {00660}, Forge +[01,11], {00508}, Zenith +[02,01], {00111}, Horizon +[02,02], {00000}, UNUSED +[02,03], {00139}, Nimbus +[02,04], {00264}, Infinity +[02,05], {00000}, UNUSED +[02,06], {00000}, UNUSED +[02,07], {00575}, Odyssey +[02,08], {00688}, Cosmos +[02,09], {00899}, Aurora +[02,10], {00372}, Arcadia +[02,11], {00719}, Zenith +[03,01], {00651}, Cascade +[03,02], {00000}, UNUSED +[03,03], {00000}, UNUSED +[03,04], {00000}, UNUSED +[03,05], {00000}, UNUSED +[03,06], {00000}, UNUSED +[03,07], {00000}, UNUSED +[03,08], {00000}, UNUSED +[03,09], {00507}, Circuit +[03,10], {00219}, Cosmos +[03,11], {01000}, Lunar +[04,01], {00967}, Neptune +[04,02], {00000}, UNUSED +[04,03], {00000}, UNUSED +[04,04], {00000}, UNUSED +[04,05], {00000}, UNUSED +[04,06], {00000}, UNUSED +[04,07], {00000}, UNUSED +[04,08], {00000}, UNUSED +[04,09], {00649}, Sol +[04,10], {00209}, Zephyr +[04,11], {00143}, Velocity +[05,01], {00272}, Eclipse +[05,02], {00000}, UNUSED +[05,03], {00000}, UNUSED +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00196}, Mirage +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/30Containers.txt b/Data/manifests/30Containers.txt index 4f4c623..7d3ffd1 100644 --- a/Data/manifests/30Containers.txt +++ b/Data/manifests/30Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00550}, Halo -[1,02], {00173}, Radiance -[1,03], {00361}, Nexus -[1,04], {00942}, Meteor -[1,05], {00244}, Zenith -[1,06], {00375}, Quantum -[1,07], {00678}, Matrix -[1,08], {00218}, Horizon -[1,09], {00651}, Nova -[1,10], {00268}, Vertex -[1,11], {00567}, Vertex -[2,01], {00310}, Comet -[2,02], {00953}, Echo -[2,03], {00417}, Blaze -[2,04], {00860}, Lunar -[2,05], {00000}, UNUSED -[2,06], {00971}, Zenith -[2,07], {00975}, Infinity -[2,08], {00951}, Twilight -[2,09], {00000}, UNUSED -[2,10], {00944}, Spectrum -[2,11], {00000}, UNUSED -[3,01], {00000}, UNUSED -[3,02], {00171}, Cyclone -[3,03], {00000}, UNUSED -[3,04], {00000}, UNUSED -[3,05], {00000}, UNUSED -[3,06], {00127}, Echo -[3,07], {00880}, Stardust -[3,08], {00000}, UNUSED -[3,09], {00000}, UNUSED -[3,10], {00103}, Vertex -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00648}, Radiance -[4,07], {00392}, Solstice -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00177}, Halo -[5,07], {00461}, Velocity -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00966}, Borealis -[6,07], {00350}, Comet -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00407}, Borealis -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00550}, Halo +[01,02], {00173}, Radiance +[01,03], {00361}, Nexus +[01,04], {00942}, Meteor +[01,05], {00244}, Zenith +[01,06], {00375}, Quantum +[01,07], {00678}, Matrix +[01,08], {00218}, Horizon +[01,09], {00651}, Nova +[01,10], {00268}, Vertex +[01,11], {00567}, Vertex +[02,01], {00310}, Comet +[02,02], {00953}, Echo +[02,03], {00417}, Blaze +[02,04], {00860}, Lunar +[02,05], {00000}, UNUSED +[02,06], {00971}, Zenith +[02,07], {00975}, Infinity +[02,08], {00951}, Twilight +[02,09], {00000}, UNUSED +[02,10], {00944}, Spectrum +[02,11], {00000}, UNUSED +[03,01], {00000}, UNUSED +[03,02], {00171}, Cyclone +[03,03], {00000}, UNUSED +[03,04], {00000}, UNUSED +[03,05], {00000}, UNUSED +[03,06], {00127}, Echo +[03,07], {00880}, Stardust +[03,08], {00000}, UNUSED +[03,09], {00000}, UNUSED +[03,10], {00103}, Vertex +[03,11], {00000}, UNUSED +[04,01], {00000}, UNUSED +[04,02], {00000}, UNUSED +[04,03], {00000}, UNUSED +[04,04], {00000}, UNUSED +[04,05], {00000}, UNUSED +[04,06], {00648}, Radiance +[04,07], {00392}, Solstice +[04,08], {00000}, UNUSED +[04,09], {00000}, UNUSED +[04,10], {00000}, UNUSED +[04,11], {00000}, UNUSED +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00000}, UNUSED +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00177}, Halo +[05,07], {00461}, Velocity +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00966}, Borealis +[06,07], {00350}, Comet +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00407}, Borealis +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/31Containers.txt b/Data/manifests/31Containers.txt index 3cdc7f3..f02b07c 100644 --- a/Data/manifests/31Containers.txt +++ b/Data/manifests/31Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00942}, Vertex -[1,02], {00871}, Inferno -[1,03], {00202}, Nimbus -[1,04], {00869}, Voyager -[1,05], {00805}, Vertex -[1,06], {00661}, Apollo -[1,07], {00466}, Nexus -[1,08], {00466}, Spectrum -[1,09], {00206}, Orion -[1,10], {00964}, Glacier -[1,11], {00000}, UNUSED -[2,01], {00368}, Quantum -[2,02], {00946}, Singularity -[2,03], {00602}, Zenith -[2,04], {00462}, Odyssey -[2,05], {00388}, Stardust -[2,06], {00207}, Nova -[2,07], {00239}, Forge -[2,08], {00154}, Polaris -[2,09], {00000}, UNUSED -[2,10], {00409}, Aero -[2,11], {00000}, UNUSED -[3,01], {00000}, UNUSED -[3,02], {00476}, Zenith -[3,03], {00000}, UNUSED -[3,04], {00444}, Halo -[3,05], {00228}, Phoenix -[3,06], {00320}, Horizon -[3,07], {00643}, Sol -[3,08], {00000}, UNUSED -[3,09], {00000}, UNUSED -[3,10], {00000}, UNUSED -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00901}, Solstice -[4,03], {00000}, UNUSED -[4,04], {00203}, Comet -[4,05], {00823}, Dynamo -[4,06], {00000}, UNUSED -[4,07], {00113}, Cascade -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00132}, Arcadia -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00868}, Vertex -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00295}, Matrix -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00942}, Vertex +[01,02], {00871}, Inferno +[01,03], {00202}, Nimbus +[01,04], {00869}, Voyager +[01,05], {00805}, Vertex +[01,06], {00661}, Apollo +[01,07], {00466}, Nexus +[01,08], {00466}, Spectrum +[01,09], {00206}, Orion +[01,10], {00964}, Glacier +[01,11], {00000}, UNUSED +[02,01], {00368}, Quantum +[02,02], {00946}, Singularity +[02,03], {00602}, Zenith +[02,04], {00462}, Odyssey +[02,05], {00388}, Stardust +[02,06], {00207}, Nova +[02,07], {00239}, Forge +[02,08], {00154}, Polaris +[02,09], {00000}, UNUSED +[02,10], {00409}, Aero +[02,11], {00000}, UNUSED +[03,01], {00000}, UNUSED +[03,02], {00476}, Zenith +[03,03], {00000}, UNUSED +[03,04], {00444}, Halo +[03,05], {00228}, Phoenix +[03,06], {00320}, Horizon +[03,07], {00643}, Sol +[03,08], {00000}, UNUSED +[03,09], {00000}, UNUSED +[03,10], {00000}, UNUSED +[03,11], {00000}, UNUSED +[04,01], {00000}, UNUSED +[04,02], {00901}, Solstice +[04,03], {00000}, UNUSED +[04,04], {00203}, Comet +[04,05], {00823}, Dynamo +[04,06], {00000}, UNUSED +[04,07], {00113}, Cascade +[04,08], {00000}, UNUSED +[04,09], {00000}, UNUSED +[04,10], {00000}, UNUSED +[04,11], {00000}, UNUSED +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00000}, UNUSED +[05,04], {00132}, Arcadia +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00868}, Vertex +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00295}, Matrix +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/32Containers.txt b/Data/manifests/32Containers.txt index ed533f5..24ae08e 100644 --- a/Data/manifests/32Containers.txt +++ b/Data/manifests/32Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00640}, Eclipse -[1,02], {00836}, Singularity -[1,03], {00793}, Vortex -[1,04], {00536}, Meteor -[1,05], {00259}, Matrix -[1,06], {00969}, Shard -[1,07], {00725}, Nexus -[1,08], {00339}, Crystal -[1,09], {00269}, Zenith -[1,10], {00451}, Crystal -[1,11], {00763}, Cyclone -[2,01], {00354}, Cascade -[2,02], {00586}, Arcadia -[2,03], {00496}, Cosmos -[2,04], {00640}, Quantum -[2,05], {00739}, Axis -[2,06], {00912}, Glider -[2,07], {00000}, UNUSED -[2,08], {00690}, Aero -[2,09], {00148}, Eclipse -[2,10], {00870}, Zephyr -[2,11], {00724}, Beacon -[3,01], {00000}, UNUSED -[3,02], {00230}, Titan -[3,03], {00646}, Horizon -[3,04], {00884}, Horizon -[3,05], {00000}, UNUSED -[3,06], {00251}, Axis -[3,07], {00000}, UNUSED -[3,08], {00770}, Cyclone -[3,09], {00000}, UNUSED -[3,10], {00000}, UNUSED -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00490}, Radiance -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00231}, Inferno -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00679}, Beacon -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00122}, Circuit -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00778}, Velocity -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00104}, Phoenix -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00640}, Eclipse +[01,02], {00836}, Singularity +[01,03], {00793}, Vortex +[01,04], {00536}, Meteor +[01,05], {00259}, Matrix +[01,06], {00969}, Shard +[01,07], {00725}, Nexus +[01,08], {00339}, Crystal +[01,09], {00269}, Zenith +[01,10], {00451}, Crystal +[01,11], {00763}, Cyclone +[02,01], {00354}, Cascade +[02,02], {00586}, Arcadia +[02,03], {00496}, Cosmos +[02,04], {00640}, Quantum +[02,05], {00739}, Axis +[02,06], {00912}, Glider +[02,07], {00000}, UNUSED +[02,08], {00690}, Aero +[02,09], {00148}, Eclipse +[02,10], {00870}, Zephyr +[02,11], {00724}, Beacon +[03,01], {00000}, UNUSED +[03,02], {00230}, Titan +[03,03], {00646}, Horizon +[03,04], {00884}, Horizon +[03,05], {00000}, UNUSED +[03,06], {00251}, Axis +[03,07], {00000}, UNUSED +[03,08], {00770}, Cyclone +[03,09], {00000}, UNUSED +[03,10], {00000}, UNUSED +[03,11], {00000}, UNUSED +[04,01], {00000}, UNUSED +[04,02], {00000}, UNUSED +[04,03], {00490}, Radiance +[04,04], {00000}, UNUSED +[04,05], {00000}, UNUSED +[04,06], {00231}, Inferno +[04,07], {00000}, UNUSED +[04,08], {00000}, UNUSED +[04,09], {00000}, UNUSED +[04,10], {00000}, UNUSED +[04,11], {00000}, UNUSED +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00679}, Beacon +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00122}, Circuit +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00778}, Velocity +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00104}, Phoenix +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/33Containers.txt b/Data/manifests/33Containers.txt index 64db68b..2a0ff18 100644 --- a/Data/manifests/33Containers.txt +++ b/Data/manifests/33Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00369}, Aero -[1,02], {00115}, Spectrum -[1,03], {00415}, Echo -[1,04], {00270}, Zenith -[1,05], {00125}, Mirage -[1,06], {00819}, Vortex -[1,07], {00973}, Singularity -[1,08], {00814}, Vortex -[1,09], {00736}, Halo -[1,10], {00902}, Circuit -[1,11], {00544}, Velocity -[2,01], {00325}, Velocity -[2,02], {00500}, Nova -[2,03], {00438}, Orion -[2,04], {00000}, UNUSED -[2,05], {00000}, UNUSED -[2,06], {00656}, Vortex -[2,07], {00609}, Beacon -[2,08], {00548}, Comet -[2,09], {00214}, Meteor -[2,10], {00713}, Singularity -[2,11], {00889}, Glider -[3,01], {00000}, UNUSED -[3,02], {00000}, UNUSED -[3,03], {00594}, Stardust -[3,04], {00000}, UNUSED -[3,05], {00000}, UNUSED -[3,06], {00537}, Halo -[3,07], {00886}, Zephyr -[3,08], {00244}, Zenith -[3,09], {00744}, Inferno -[3,10], {00000}, UNUSED -[3,11], {00278}, Phoenix -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00844}, Spectrum -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00509}, Phoenix -[4,08], {00101}, Ember -[4,09], {00704}, Radiance -[4,10], {00000}, UNUSED -[4,11], {00636}, Glider -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00492}, Solstice -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00804}, Nexus -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00369}, Aero +[01,02], {00115}, Spectrum +[01,03], {00415}, Echo +[01,04], {00270}, Zenith +[01,05], {00125}, Mirage +[01,06], {00819}, Vortex +[01,07], {00973}, Singularity +[01,08], {00814}, Vortex +[01,09], {00736}, Halo +[01,10], {00902}, Circuit +[01,11], {00544}, Velocity +[02,01], {00325}, Velocity +[02,02], {00500}, Nova +[02,03], {00438}, Orion +[02,04], {00000}, UNUSED +[02,05], {00000}, UNUSED +[02,06], {00656}, Vortex +[02,07], {00609}, Beacon +[02,08], {00548}, Comet +[02,09], {00214}, Meteor +[02,10], {00713}, Singularity +[02,11], {00889}, Glider +[03,01], {00000}, UNUSED +[03,02], {00000}, UNUSED +[03,03], {00594}, Stardust +[03,04], {00000}, UNUSED +[03,05], {00000}, UNUSED +[03,06], {00537}, Halo +[03,07], {00886}, Zephyr +[03,08], {00244}, Zenith +[03,09], {00744}, Inferno +[03,10], {00000}, UNUSED +[03,11], {00278}, Phoenix +[04,01], {00000}, UNUSED +[04,02], {00000}, UNUSED +[04,03], {00844}, Spectrum +[04,04], {00000}, UNUSED +[04,05], {00000}, UNUSED +[04,06], {00000}, UNUSED +[04,07], {00509}, Phoenix +[04,08], {00101}, Ember +[04,09], {00704}, Radiance +[04,10], {00000}, UNUSED +[04,11], {00636}, Glider +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00492}, Solstice +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00804}, Nexus +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/34Containers.txt b/Data/manifests/34Containers.txt index 073b369..384c450 100644 --- a/Data/manifests/34Containers.txt +++ b/Data/manifests/34Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00647}, Shard -[1,02], {00766}, Vertex -[1,03], {00281}, Solstice -[1,04], {00626}, Twilight -[1,05], {00260}, Solstice -[1,06], {00293}, Titan -[1,07], {00756}, Tesla -[1,08], {00686}, Crystal -[1,09], {00635}, Orion -[1,10], {00622}, Aurora -[1,11], {00655}, Titan -[2,01], {00420}, Forge -[2,02], {00321}, Gravity -[2,03], {00000}, UNUSED -[2,04], {00299}, Meteor -[2,05], {00292}, Horizon -[2,06], {00563}, Everest -[2,07], {00864}, Sol -[2,08], {00574}, Lunar -[2,09], {00548}, Solstice -[2,10], {00944}, Velocity -[2,11], {00247}, Odyssey -[3,01], {00701}, Matrix -[3,02], {00000}, UNUSED -[3,03], {00000}, UNUSED -[3,04], {00651}, Singularity -[3,05], {00729}, Atlas -[3,06], {00600}, Orion -[3,07], {00267}, Aurora -[3,08], {00988}, Voyager -[3,09], {00902}, Orion -[3,10], {00271}, Horizon -[3,11], {00123}, Vertex -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00182}, Cosmos -[4,06], {00549}, Shadow -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00102}, Blaze -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00390}, Polaris -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00647}, Shard +[01,02], {00766}, Vertex +[01,03], {00281}, Solstice +[01,04], {00626}, Twilight +[01,05], {00260}, Solstice +[01,06], {00293}, Titan +[01,07], {00756}, Tesla +[01,08], {00686}, Crystal +[01,09], {00635}, Orion +[01,10], {00622}, Aurora +[01,11], {00655}, Titan +[02,01], {00420}, Forge +[02,02], {00321}, Gravity +[02,03], {00000}, UNUSED +[02,04], {00299}, Meteor +[02,05], {00292}, Horizon +[02,06], {00563}, Everest +[02,07], {00864}, Sol +[02,08], {00574}, Lunar +[02,09], {00548}, Solstice +[02,10], {00944}, Velocity +[02,11], {00247}, Odyssey +[03,01], {00701}, Matrix +[03,02], {00000}, UNUSED +[03,03], {00000}, UNUSED +[03,04], {00651}, Singularity +[03,05], {00729}, Atlas +[03,06], {00600}, Orion +[03,07], {00267}, Aurora +[03,08], {00988}, Voyager +[03,09], {00902}, Orion +[03,10], {00271}, Horizon +[03,11], {00123}, Vertex +[04,01], {00000}, UNUSED +[04,02], {00000}, UNUSED +[04,03], {00000}, UNUSED +[04,04], {00000}, UNUSED +[04,05], {00182}, Cosmos +[04,06], {00549}, Shadow +[04,07], {00000}, UNUSED +[04,08], {00000}, UNUSED +[04,09], {00000}, UNUSED +[04,10], {00000}, UNUSED +[04,11], {00102}, Blaze +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00000}, UNUSED +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00390}, Polaris +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/35Containers.txt b/Data/manifests/35Containers.txt index 73b0066..9f24265 100644 --- a/Data/manifests/35Containers.txt +++ b/Data/manifests/35Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00846}, Lunar -[1,02], {00373}, Spectrum -[1,03], {00404}, Zenith -[1,04], {00370}, Cosmos -[1,05], {00385}, Apollo -[1,06], {00794}, Horizon -[1,07], {00712}, Mirage -[1,08], {00564}, Comet -[1,09], {00980}, Zenith -[1,10], {00894}, Tectonic -[1,11], {00641}, Drift -[2,01], {00214}, Glider -[2,02], {00636}, Quantum -[2,03], {00157}, Forge -[2,04], {00636}, Singularity -[2,05], {00111}, Vortex -[2,06], {00487}, Circuit -[2,07], {00597}, Zephyr -[2,08], {00000}, UNUSED -[2,09], {00607}, Crystal -[2,10], {00249}, Arcadia -[2,11], {00391}, Dynamo -[3,01], {00937}, Tesla -[3,02], {00516}, Voyager -[3,03], {00792}, Shadow -[3,04], {00926}, Twilight -[3,05], {00680}, Singularity -[3,06], {00424}, Vertex -[3,07], {00000}, UNUSED -[3,08], {00000}, UNUSED -[3,09], {00000}, UNUSED -[3,10], {00133}, Apollo -[3,11], {00607}, Drift -[4,01], {00000}, UNUSED -[4,02], {00422}, Glider -[4,03], {00657}, Vertex -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00670}, Cyclone -[5,01], {00000}, UNUSED -[5,02], {00639}, Spectrum -[5,03], {00343}, Zenith -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00364}, Spectrum -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00846}, Lunar +[01,02], {00373}, Spectrum +[01,03], {00404}, Zenith +[01,04], {00370}, Cosmos +[01,05], {00385}, Apollo +[01,06], {00794}, Horizon +[01,07], {00712}, Mirage +[01,08], {00564}, Comet +[01,09], {00980}, Zenith +[01,10], {00894}, Tectonic +[01,11], {00641}, Drift +[02,01], {00214}, Glider +[02,02], {00636}, Quantum +[02,03], {00157}, Forge +[02,04], {00636}, Singularity +[02,05], {00111}, Vortex +[02,06], {00487}, Circuit +[02,07], {00597}, Zephyr +[02,08], {00000}, UNUSED +[02,09], {00607}, Crystal +[02,10], {00249}, Arcadia +[02,11], {00391}, Dynamo +[03,01], {00937}, Tesla +[03,02], {00516}, Voyager +[03,03], {00792}, Shadow +[03,04], {00926}, Twilight +[03,05], {00680}, Singularity +[03,06], {00424}, Vertex +[03,07], {00000}, UNUSED +[03,08], {00000}, UNUSED +[03,09], {00000}, UNUSED +[03,10], {00133}, Apollo +[03,11], {00607}, Drift +[04,01], {00000}, UNUSED +[04,02], {00422}, Glider +[04,03], {00657}, Vertex +[04,04], {00000}, UNUSED +[04,05], {00000}, UNUSED +[04,06], {00000}, UNUSED +[04,07], {00000}, UNUSED +[04,08], {00000}, UNUSED +[04,09], {00000}, UNUSED +[04,10], {00000}, UNUSED +[04,11], {00670}, Cyclone +[05,01], {00000}, UNUSED +[05,02], {00639}, Spectrum +[05,03], {00343}, Zenith +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00364}, Spectrum +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/36Containers.txt b/Data/manifests/36Containers.txt index 5edaa4c..d8bf5da 100644 --- a/Data/manifests/36Containers.txt +++ b/Data/manifests/36Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00768}, Axis -[1,02], {00401}, Echo -[1,03], {00674}, Horizon -[1,04], {00803}, Vertex -[1,05], {00143}, Tectonic -[1,06], {00000}, UNUSED -[1,07], {00730}, Comet -[1,08], {00910}, Shard -[1,09], {00248}, Singularity -[1,10], {00341}, Inferno -[1,11], {00421}, Halo -[2,01], {00000}, UNUSED -[2,02], {00000}, UNUSED -[2,03], {00718}, Halo -[2,04], {00752}, Mirage -[2,05], {00000}, UNUSED -[2,06], {00000}, UNUSED -[2,07], {00554}, Cyclone -[2,08], {00769}, Horizon -[2,09], {00145}, Vertex -[2,10], {00108}, Voyager -[2,11], {00488}, Comet -[3,01], {00000}, UNUSED -[3,02], {00000}, UNUSED -[3,03], {00774}, Titan -[3,04], {00369}, Shard -[3,05], {00000}, UNUSED -[3,06], {00000}, UNUSED -[3,07], {00140}, Matrix -[3,08], {00537}, Infinity -[3,09], {00807}, Zenith -[3,10], {00840}, Neptune -[3,11], {00439}, Cascade -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00190}, Atlas -[4,04], {00802}, Cosmos -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00000}, UNUSED -[4,08], {00627}, Voyager -[4,09], {00971}, Zephyr -[4,10], {00000}, UNUSED -[4,11], {00491}, Forge -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00187}, Neptune -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00162}, Spectrum -[5,10], {00000}, UNUSED -[5,11], {00232}, Twilight -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00451}, Cascade -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00375}, Horizon -[6,10], {00000}, UNUSED -[6,11], {00867}, Phoenix -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00852}, Titan -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00768}, Axis +[01,02], {00401}, Echo +[01,03], {00674}, Horizon +[01,04], {00803}, Vertex +[01,05], {00143}, Tectonic +[01,06], {00000}, UNUSED +[01,07], {00730}, Comet +[01,08], {00910}, Shard +[01,09], {00248}, Singularity +[01,10], {00341}, Inferno +[01,11], {00421}, Halo +[02,01], {00000}, UNUSED +[02,02], {00000}, UNUSED +[02,03], {00718}, Halo +[02,04], {00752}, Mirage +[02,05], {00000}, UNUSED +[02,06], {00000}, UNUSED +[02,07], {00554}, Cyclone +[02,08], {00769}, Horizon +[02,09], {00145}, Vertex +[02,10], {00108}, Voyager +[02,11], {00488}, Comet +[03,01], {00000}, UNUSED +[03,02], {00000}, UNUSED +[03,03], {00774}, Titan +[03,04], {00369}, Shard +[03,05], {00000}, UNUSED +[03,06], {00000}, UNUSED +[03,07], {00140}, Matrix +[03,08], {00537}, Infinity +[03,09], {00807}, Zenith +[03,10], {00840}, Neptune +[03,11], {00439}, Cascade +[04,01], {00000}, UNUSED +[04,02], {00000}, UNUSED +[04,03], {00190}, Atlas +[04,04], {00802}, Cosmos +[04,05], {00000}, UNUSED +[04,06], {00000}, UNUSED +[04,07], {00000}, UNUSED +[04,08], {00627}, Voyager +[04,09], {00971}, Zephyr +[04,10], {00000}, UNUSED +[04,11], {00491}, Forge +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00000}, UNUSED +[05,04], {00187}, Neptune +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00162}, Spectrum +[05,10], {00000}, UNUSED +[05,11], {00232}, Twilight +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00451}, Cascade +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00375}, Horizon +[06,10], {00000}, UNUSED +[06,11], {00867}, Phoenix +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00852}, Titan +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/37Containers.txt b/Data/manifests/37Containers.txt index c3cf836..938d732 100644 --- a/Data/manifests/37Containers.txt +++ b/Data/manifests/37Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00806}, Singularity -[1,02], {00250}, Nimbus -[1,03], {00640}, Eclipse -[1,04], {00887}, Vertex -[1,05], {00405}, Apollo -[1,06], {00263}, Zephyr -[1,07], {00256}, Echo -[1,08], {00820}, Stardust -[1,09], {00835}, Crystal -[1,10], {00989}, Zephyr -[1,11], {00864}, Horizon -[2,01], {00501}, Polaris -[2,02], {00650}, Stardust -[2,03], {00195}, Tesla -[2,04], {00673}, Glacier -[2,05], {00000}, UNUSED -[2,06], {00435}, Odyssey -[2,07], {00779}, Echo -[2,08], {00749}, Zenith -[2,09], {00857}, Zenith -[2,10], {00590}, Eclipse -[2,11], {00510}, Orion -[3,01], {00000}, UNUSED -[3,02], {00270}, Ember -[3,03], {00366}, Nexus -[3,04], {00708}, Twilight -[3,05], {00000}, UNUSED -[3,06], {00000}, UNUSED -[3,07], {00542}, Zephyr -[3,08], {00000}, UNUSED -[3,09], {00222}, Crystal -[3,10], {00802}, Zenith -[3,11], {00750}, Zenith -[4,01], {00000}, UNUSED -[4,02], {00189}, Vortex -[4,03], {00381}, Horizon -[4,04], {00696}, Glacier -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00219}, Blaze -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00248}, Blaze -[4,11], {00718}, Meteor -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00899}, Meteor -[5,04], {00603}, Mirage -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00858}, Echo -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00806}, Singularity +[01,02], {00250}, Nimbus +[01,03], {00640}, Eclipse +[01,04], {00887}, Vertex +[01,05], {00405}, Apollo +[01,06], {00263}, Zephyr +[01,07], {00256}, Echo +[01,08], {00820}, Stardust +[01,09], {00835}, Crystal +[01,10], {00989}, Zephyr +[01,11], {00864}, Horizon +[02,01], {00501}, Polaris +[02,02], {00650}, Stardust +[02,03], {00195}, Tesla +[02,04], {00673}, Glacier +[02,05], {00000}, UNUSED +[02,06], {00435}, Odyssey +[02,07], {00779}, Echo +[02,08], {00749}, Zenith +[02,09], {00857}, Zenith +[02,10], {00590}, Eclipse +[02,11], {00510}, Orion +[03,01], {00000}, UNUSED +[03,02], {00270}, Ember +[03,03], {00366}, Nexus +[03,04], {00708}, Twilight +[03,05], {00000}, UNUSED +[03,06], {00000}, UNUSED +[03,07], {00542}, Zephyr +[03,08], {00000}, UNUSED +[03,09], {00222}, Crystal +[03,10], {00802}, Zenith +[03,11], {00750}, Zenith +[04,01], {00000}, UNUSED +[04,02], {00189}, Vortex +[04,03], {00381}, Horizon +[04,04], {00696}, Glacier +[04,05], {00000}, UNUSED +[04,06], {00000}, UNUSED +[04,07], {00219}, Blaze +[04,08], {00000}, UNUSED +[04,09], {00000}, UNUSED +[04,10], {00248}, Blaze +[04,11], {00718}, Meteor +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00899}, Meteor +[05,04], {00603}, Mirage +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00858}, Echo +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/38Containers.txt b/Data/manifests/38Containers.txt index 097ea3d..ed7e8a5 100644 --- a/Data/manifests/38Containers.txt +++ b/Data/manifests/38Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00947}, Polaris -[1,02], {00689}, Aero -[1,03], {00804}, Glacier -[1,04], {00459}, Crystal -[1,05], {00966}, Glider -[1,06], {00741}, Voyager -[1,07], {00357}, Zenith -[1,08], {00401}, Dynamo -[1,09], {00829}, Glider -[1,10], {00566}, Everest -[1,11], {00243}, Orion -[2,01], {00244}, Spectrum -[2,02], {00136}, Vertex -[2,03], {00551}, Everest -[2,04], {00183}, Zenith -[2,05], {00340}, Forge -[2,06], {00752}, Velocity -[2,07], {00152}, Nova -[2,08], {00343}, Velocity -[2,09], {00298}, Aero -[2,10], {00848}, Zenith -[2,11], {00799}, Shadow -[3,01], {00000}, UNUSED -[3,02], {00690}, Everest -[3,03], {00568}, Vertex -[3,04], {00506}, Spectrum -[3,05], {00946}, Circuit -[3,06], {00000}, UNUSED -[3,07], {00400}, Comet -[3,08], {00000}, UNUSED -[3,09], {00534}, Nimbus -[3,10], {00550}, Mirage -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00187}, Meteor -[4,03], {00628}, Sol -[4,04], {00973}, Arcadia -[4,05], {00641}, Horizon -[4,06], {00000}, UNUSED -[4,07], {00217}, Shadow -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00827}, Nexus -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00318}, Mirage -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00506}, Dynamo -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00924}, Horizon -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00947}, Polaris +[01,02], {00689}, Aero +[01,03], {00804}, Glacier +[01,04], {00459}, Crystal +[01,05], {00966}, Glider +[01,06], {00741}, Voyager +[01,07], {00357}, Zenith +[01,08], {00401}, Dynamo +[01,09], {00829}, Glider +[01,10], {00566}, Everest +[01,11], {00243}, Orion +[02,01], {00244}, Spectrum +[02,02], {00136}, Vertex +[02,03], {00551}, Everest +[02,04], {00183}, Zenith +[02,05], {00340}, Forge +[02,06], {00752}, Velocity +[02,07], {00152}, Nova +[02,08], {00343}, Velocity +[02,09], {00298}, Aero +[02,10], {00848}, Zenith +[02,11], {00799}, Shadow +[03,01], {00000}, UNUSED +[03,02], {00690}, Everest +[03,03], {00568}, Vertex +[03,04], {00506}, Spectrum +[03,05], {00946}, Circuit +[03,06], {00000}, UNUSED +[03,07], {00400}, Comet +[03,08], {00000}, UNUSED +[03,09], {00534}, Nimbus +[03,10], {00550}, Mirage +[03,11], {00000}, UNUSED +[04,01], {00000}, UNUSED +[04,02], {00187}, Meteor +[04,03], {00628}, Sol +[04,04], {00973}, Arcadia +[04,05], {00641}, Horizon +[04,06], {00000}, UNUSED +[04,07], {00217}, Shadow +[04,08], {00000}, UNUSED +[04,09], {00000}, UNUSED +[04,10], {00827}, Nexus +[04,11], {00000}, UNUSED +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00000}, UNUSED +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00318}, Mirage +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00506}, Dynamo +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00924}, Horizon +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/39Containers.txt b/Data/manifests/39Containers.txt index edb2595..712ad72 100644 --- a/Data/manifests/39Containers.txt +++ b/Data/manifests/39Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00107}, Vortex -[1,02], {00595}, Nova -[1,03], {00272}, Eclipse -[1,04], {00876}, Meteor -[1,05], {00540}, Horizon -[1,06], {00305}, Comet -[1,07], {00667}, Radiance -[1,08], {00239}, Forge -[1,09], {00307}, Gravity -[1,10], {00604}, Cyclone -[1,11], {00302}, Horizon -[2,01], {00828}, Solstice -[2,02], {00000}, UNUSED -[2,03], {00000}, UNUSED -[2,04], {00369}, Glacier -[2,05], {00535}, Aero -[2,06], {00370}, Cyclone -[2,07], {00552}, Lunar -[2,08], {00125}, Nimbus -[2,09], {00238}, Meteor -[2,10], {00931}, Velocity -[2,11], {00596}, Solstice -[3,01], {00662}, Zenith -[3,02], {00000}, UNUSED -[3,03], {00000}, UNUSED -[3,04], {00000}, UNUSED -[3,05], {00447}, Meteor -[3,06], {00859}, Matrix -[3,07], {00730}, Prism -[3,08], {00179}, Quantum -[3,09], {00246}, Blaze -[3,10], {00000}, UNUSED -[3,11], {00196}, Vertex -[4,01], {00920}, Blaze -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00422}, Cyclone -[4,07], {00336}, Vertex -[4,08], {00494}, Vortex -[4,09], {00780}, Lunar -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00991}, Ember -[5,07], {00775}, Solstice -[5,08], {00936}, Cyclone -[5,09], {00515}, Orion -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00783}, Zephyr -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00893}, Atlas -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00489}, Aero -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00107}, Vortex +[01,02], {00595}, Nova +[01,03], {00272}, Eclipse +[01,04], {00876}, Meteor +[01,05], {00540}, Horizon +[01,06], {00305}, Comet +[01,07], {00667}, Radiance +[01,08], {00239}, Forge +[01,09], {00307}, Gravity +[01,10], {00604}, Cyclone +[01,11], {00302}, Horizon +[02,01], {00828}, Solstice +[02,02], {00000}, UNUSED +[02,03], {00000}, UNUSED +[02,04], {00369}, Glacier +[02,05], {00535}, Aero +[02,06], {00370}, Cyclone +[02,07], {00552}, Lunar +[02,08], {00125}, Nimbus +[02,09], {00238}, Meteor +[02,10], {00931}, Velocity +[02,11], {00596}, Solstice +[03,01], {00662}, Zenith +[03,02], {00000}, UNUSED +[03,03], {00000}, UNUSED +[03,04], {00000}, UNUSED +[03,05], {00447}, Meteor +[03,06], {00859}, Matrix +[03,07], {00730}, Prism +[03,08], {00179}, Quantum +[03,09], {00246}, Blaze +[03,10], {00000}, UNUSED +[03,11], {00196}, Vertex +[04,01], {00920}, Blaze +[04,02], {00000}, UNUSED +[04,03], {00000}, UNUSED +[04,04], {00000}, UNUSED +[04,05], {00000}, UNUSED +[04,06], {00422}, Cyclone +[04,07], {00336}, Vertex +[04,08], {00494}, Vortex +[04,09], {00780}, Lunar +[04,10], {00000}, UNUSED +[04,11], {00000}, UNUSED +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00000}, UNUSED +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00991}, Ember +[05,07], {00775}, Solstice +[05,08], {00936}, Cyclone +[05,09], {00515}, Orion +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00783}, Zephyr +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00893}, Atlas +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00489}, Aero +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/40Containers.txt b/Data/manifests/40Containers.txt index 355235c..0eb1435 100644 --- a/Data/manifests/40Containers.txt +++ b/Data/manifests/40Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00228}, Vortex -[1,02], {00657}, Stardust -[1,03], {00296}, Cosmos -[1,04], {00968}, Velocity -[1,05], {00440}, Dynamo -[1,06], {00325}, Shard -[1,07], {00115}, Forge -[1,08], {00964}, Nimbus -[1,09], {00103}, Cosmos -[1,10], {00951}, Infinity -[1,11], {00371}, Dynamo -[2,01], {00705}, Inferno -[2,02], {00848}, Stardust -[2,03], {00512}, Eclipse -[2,04], {00202}, Crystal -[2,05], {00259}, Beacon -[2,06], {00800}, Aero -[2,07], {00125}, Glacier -[2,08], {00228}, Spectrum -[2,09], {00795}, Shadow -[2,10], {00768}, Crystal -[2,11], {00240}, Circuit -[3,01], {00399}, Atlas -[3,02], {00584}, Horizon -[3,03], {00208}, Solstice -[3,04], {00504}, Inferno -[3,05], {00000}, UNUSED -[3,06], {00795}, Tectonic -[3,07], {00000}, UNUSED -[3,08], {00597}, Zenith -[3,09], {00121}, Horizon -[3,10], {00135}, Shadow -[3,11], {00900}, Tectonic -[4,01], {00778}, Dynamo -[4,02], {00382}, Stardust -[4,03], {00000}, UNUSED -[4,04], {00000}, UNUSED -[4,05], {00000}, UNUSED -[4,06], {00981}, Spectrum -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00615}, Twilight -[5,01], {00000}, UNUSED -[5,02], {00461}, Blaze -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00189}, Cyclone -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00584}, Zenith -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00782}, Gravity -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00867}, Vertex -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00228}, Vortex +[01,02], {00657}, Stardust +[01,03], {00296}, Cosmos +[01,04], {00968}, Velocity +[01,05], {00440}, Dynamo +[01,06], {00325}, Shard +[01,07], {00115}, Forge +[01,08], {00964}, Nimbus +[01,09], {00103}, Cosmos +[01,10], {00951}, Infinity +[01,11], {00371}, Dynamo +[02,01], {00705}, Inferno +[02,02], {00848}, Stardust +[02,03], {00512}, Eclipse +[02,04], {00202}, Crystal +[02,05], {00259}, Beacon +[02,06], {00800}, Aero +[02,07], {00125}, Glacier +[02,08], {00228}, Spectrum +[02,09], {00795}, Shadow +[02,10], {00768}, Crystal +[02,11], {00240}, Circuit +[03,01], {00399}, Atlas +[03,02], {00584}, Horizon +[03,03], {00208}, Solstice +[03,04], {00504}, Inferno +[03,05], {00000}, UNUSED +[03,06], {00795}, Tectonic +[03,07], {00000}, UNUSED +[03,08], {00597}, Zenith +[03,09], {00121}, Horizon +[03,10], {00135}, Shadow +[03,11], {00900}, Tectonic +[04,01], {00778}, Dynamo +[04,02], {00382}, Stardust +[04,03], {00000}, UNUSED +[04,04], {00000}, UNUSED +[04,05], {00000}, UNUSED +[04,06], {00981}, Spectrum +[04,07], {00000}, UNUSED +[04,08], {00000}, UNUSED +[04,09], {00000}, UNUSED +[04,10], {00000}, UNUSED +[04,11], {00615}, Twilight +[05,01], {00000}, UNUSED +[05,02], {00461}, Blaze +[05,03], {00000}, UNUSED +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00189}, Cyclone +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00584}, Zenith +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00782}, Gravity +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00867}, Vertex +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/41Containers.txt b/Data/manifests/41Containers.txt index 6950f65..faa36b9 100644 --- a/Data/manifests/41Containers.txt +++ b/Data/manifests/41Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00653}, Titan -[1,02], {00689}, Titan -[1,03], {00117}, Spectrum -[1,04], {00592}, Radiance -[1,05], {00923}, Polaris -[1,06], {00138}, Vertex -[1,07], {00951}, Cyclone -[1,08], {00127}, Ember -[1,09], {00442}, Zenith -[1,10], {00748}, Drift -[1,11], {00979}, Crystal -[2,01], {00762}, Velocity -[2,02], {00563}, Spectrum -[2,03], {00851}, Matrix -[2,04], {00583}, Zenith -[2,05], {00246}, Zenith -[2,06], {00728}, Zephyr -[2,07], {00661}, Tectonic -[2,08], {00000}, UNUSED -[2,09], {00515}, Glider -[2,10], {00157}, Meteor -[2,11], {00315}, Eclipse -[3,01], {00196}, Eclipse -[3,02], {00000}, UNUSED -[3,03], {00670}, Circuit -[3,04], {00780}, Meteor -[3,05], {00979}, Solstice -[3,06], {00260}, Velocity -[3,07], {00298}, Shard -[3,08], {00000}, UNUSED -[3,09], {00801}, Circuit -[3,10], {00625}, Tesla -[3,11], {00779}, Arcadia -[4,01], {00368}, Solstice -[4,02], {00000}, UNUSED -[4,03], {00675}, Dynamo -[4,04], {00309}, Solstice -[4,05], {00820}, Spectrum -[4,06], {00732}, Aurora -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00794}, Zenith -[4,11], {00896}, Nexus -[5,01], {00589}, Circuit -[5,02], {00000}, UNUSED -[5,03], {00789}, Nova -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00678}, Sol -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00278}, Polaris -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00653}, Titan +[01,02], {00689}, Titan +[01,03], {00117}, Spectrum +[01,04], {00592}, Radiance +[01,05], {00923}, Polaris +[01,06], {00138}, Vertex +[01,07], {00951}, Cyclone +[01,08], {00127}, Ember +[01,09], {00442}, Zenith +[01,10], {00748}, Drift +[01,11], {00979}, Crystal +[02,01], {00762}, Velocity +[02,02], {00563}, Spectrum +[02,03], {00851}, Matrix +[02,04], {00583}, Zenith +[02,05], {00246}, Zenith +[02,06], {00728}, Zephyr +[02,07], {00661}, Tectonic +[02,08], {00000}, UNUSED +[02,09], {00515}, Glider +[02,10], {00157}, Meteor +[02,11], {00315}, Eclipse +[03,01], {00196}, Eclipse +[03,02], {00000}, UNUSED +[03,03], {00670}, Circuit +[03,04], {00780}, Meteor +[03,05], {00979}, Solstice +[03,06], {00260}, Velocity +[03,07], {00298}, Shard +[03,08], {00000}, UNUSED +[03,09], {00801}, Circuit +[03,10], {00625}, Tesla +[03,11], {00779}, Arcadia +[04,01], {00368}, Solstice +[04,02], {00000}, UNUSED +[04,03], {00675}, Dynamo +[04,04], {00309}, Solstice +[04,05], {00820}, Spectrum +[04,06], {00732}, Aurora +[04,07], {00000}, UNUSED +[04,08], {00000}, UNUSED +[04,09], {00000}, UNUSED +[04,10], {00794}, Zenith +[04,11], {00896}, Nexus +[05,01], {00589}, Circuit +[05,02], {00000}, UNUSED +[05,03], {00789}, Nova +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00678}, Sol +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00278}, Polaris +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/42Containers.txt b/Data/manifests/42Containers.txt index b20e2f1..4f3e421 100644 --- a/Data/manifests/42Containers.txt +++ b/Data/manifests/42Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00289}, Inferno -[1,02], {00169}, Tesla -[1,03], {00938}, Sol -[1,04], {00470}, Tectonic -[1,05], {00230}, Mirage -[1,06], {00559}, Stardust -[1,07], {00485}, Cascade -[1,08], {00302}, Gravity -[1,09], {00660}, Cascade -[1,10], {00193}, Shard -[1,11], {00276}, Everest -[2,01], {00863}, Forge -[2,02], {00898}, Eclipse -[2,03], {00176}, Neptune -[2,04], {00288}, Aurora -[2,05], {00377}, Circuit -[2,06], {00665}, Aero -[2,07], {00822}, Velocity -[2,08], {00000}, UNUSED -[2,09], {00136}, Meteor -[2,10], {00468}, Shard -[2,11], {00816}, Tectonic -[3,01], {00133}, Vortex -[3,02], {00000}, UNUSED -[3,03], {00925}, Zenith -[3,04], {00580}, Forge -[3,05], {00106}, Dynamo -[3,06], {00650}, Vertex -[3,07], {00738}, Vortex -[3,08], {00000}, UNUSED -[3,09], {00433}, Twilight -[3,10], {00836}, Horizon -[3,11], {00134}, Sol -[4,01], {00445}, Spectrum -[4,02], {00000}, UNUSED -[4,03], {00712}, Zenith -[4,04], {00695}, Sol -[4,05], {00427}, Glacier -[4,06], {00294}, Nexus -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00978}, Axis -[4,11], {00549}, Aero -[5,01], {00970}, Zenith -[5,02], {00000}, UNUSED -[5,03], {00436}, Circuit -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00420}, Dynamo -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00271}, Matrix -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00706}, Comet -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00289}, Inferno +[01,02], {00169}, Tesla +[01,03], {00938}, Sol +[01,04], {00470}, Tectonic +[01,05], {00230}, Mirage +[01,06], {00559}, Stardust +[01,07], {00485}, Cascade +[01,08], {00302}, Gravity +[01,09], {00660}, Cascade +[01,10], {00193}, Shard +[01,11], {00276}, Everest +[02,01], {00863}, Forge +[02,02], {00898}, Eclipse +[02,03], {00176}, Neptune +[02,04], {00288}, Aurora +[02,05], {00377}, Circuit +[02,06], {00665}, Aero +[02,07], {00822}, Velocity +[02,08], {00000}, UNUSED +[02,09], {00136}, Meteor +[02,10], {00468}, Shard +[02,11], {00816}, Tectonic +[03,01], {00133}, Vortex +[03,02], {00000}, UNUSED +[03,03], {00925}, Zenith +[03,04], {00580}, Forge +[03,05], {00106}, Dynamo +[03,06], {00650}, Vertex +[03,07], {00738}, Vortex +[03,08], {00000}, UNUSED +[03,09], {00433}, Twilight +[03,10], {00836}, Horizon +[03,11], {00134}, Sol +[04,01], {00445}, Spectrum +[04,02], {00000}, UNUSED +[04,03], {00712}, Zenith +[04,04], {00695}, Sol +[04,05], {00427}, Glacier +[04,06], {00294}, Nexus +[04,07], {00000}, UNUSED +[04,08], {00000}, UNUSED +[04,09], {00000}, UNUSED +[04,10], {00978}, Axis +[04,11], {00549}, Aero +[05,01], {00970}, Zenith +[05,02], {00000}, UNUSED +[05,03], {00436}, Circuit +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00420}, Dynamo +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00271}, Matrix +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00706}, Comet +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/43Containers.txt b/Data/manifests/43Containers.txt index 918d58e..41cc67d 100644 --- a/Data/manifests/43Containers.txt +++ b/Data/manifests/43Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00875}, Crystal -[1,02], {00337}, Horizon -[1,03], {00729}, Nimbus -[1,04], {00435}, Blaze -[1,05], {00190}, Halo -[1,06], {00379}, Cosmos -[1,07], {00183}, Cosmos -[1,08], {00275}, Everest -[1,09], {00469}, Voyager -[1,10], {00208}, Spectrum -[1,11], {00557}, Horizon -[2,01], {00226}, Drift -[2,02], {00748}, Apollo -[2,03], {00489}, Tesla -[2,04], {00593}, Twilight -[2,05], {00000}, UNUSED -[2,06], {00395}, Twilight -[2,07], {00566}, Voyager -[2,08], {00469}, Apollo -[2,09], {00381}, Everest -[2,10], {00392}, Forge -[2,11], {00322}, Velocity -[3,01], {00664}, Mirage -[3,02], {00998}, Dynamo -[3,03], {00276}, Prism -[3,04], {00116}, Nexus -[3,05], {00000}, UNUSED -[3,06], {00798}, Gravity -[3,07], {00571}, Drift -[3,08], {00244}, Voyager -[3,09], {00000}, UNUSED -[3,10], {00815}, Matrix -[3,11], {00000}, UNUSED -[4,01], {00286}, Spectrum -[4,02], {00429}, Titan -[4,03], {00361}, Vortex -[4,04], {00794}, Twilight -[4,05], {00000}, UNUSED -[4,06], {00514}, Neptune -[4,07], {00000}, UNUSED -[4,08], {00851}, Nova -[4,09], {00000}, UNUSED -[4,10], {00756}, Quantum -[4,11], {00000}, UNUSED -[5,01], {00482}, Everest -[5,02], {00291}, Everest -[5,03], {00795}, Orion -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00246}, Vortex -[5,07], {00000}, UNUSED -[5,08], {00393}, Forge -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00604}, Solstice -[6,02], {00899}, Eclipse -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00875}, Crystal +[01,02], {00337}, Horizon +[01,03], {00729}, Nimbus +[01,04], {00435}, Blaze +[01,05], {00190}, Halo +[01,06], {00379}, Cosmos +[01,07], {00183}, Cosmos +[01,08], {00275}, Everest +[01,09], {00469}, Voyager +[01,10], {00208}, Spectrum +[01,11], {00557}, Horizon +[02,01], {00226}, Drift +[02,02], {00748}, Apollo +[02,03], {00489}, Tesla +[02,04], {00593}, Twilight +[02,05], {00000}, UNUSED +[02,06], {00395}, Twilight +[02,07], {00566}, Voyager +[02,08], {00469}, Apollo +[02,09], {00381}, Everest +[02,10], {00392}, Forge +[02,11], {00322}, Velocity +[03,01], {00664}, Mirage +[03,02], {00998}, Dynamo +[03,03], {00276}, Prism +[03,04], {00116}, Nexus +[03,05], {00000}, UNUSED +[03,06], {00798}, Gravity +[03,07], {00571}, Drift +[03,08], {00244}, Voyager +[03,09], {00000}, UNUSED +[03,10], {00815}, Matrix +[03,11], {00000}, UNUSED +[04,01], {00286}, Spectrum +[04,02], {00429}, Titan +[04,03], {00361}, Vortex +[04,04], {00794}, Twilight +[04,05], {00000}, UNUSED +[04,06], {00514}, Neptune +[04,07], {00000}, UNUSED +[04,08], {00851}, Nova +[04,09], {00000}, UNUSED +[04,10], {00756}, Quantum +[04,11], {00000}, UNUSED +[05,01], {00482}, Everest +[05,02], {00291}, Everest +[05,03], {00795}, Orion +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00246}, Vortex +[05,07], {00000}, UNUSED +[05,08], {00393}, Forge +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00604}, Solstice +[06,02], {00899}, Eclipse +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/44Containers.txt b/Data/manifests/44Containers.txt index eb12fc3..139adbb 100644 --- a/Data/manifests/44Containers.txt +++ b/Data/manifests/44Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00723}, Matrix -[1,02], {00862}, Nexus -[1,03], {00659}, Cosmos -[1,04], {00219}, Apollo -[1,05], {00968}, Dynamo -[1,06], {00546}, Echo -[1,07], {00900}, Drift -[1,08], {00945}, Comet -[1,09], {00848}, Polaris -[1,10], {00492}, Cyclone -[1,11], {00652}, Mirage -[2,01], {00458}, Matrix -[2,02], {00000}, UNUSED -[2,03], {00000}, UNUSED -[2,04], {00694}, Beacon -[2,05], {00553}, Nexus -[2,06], {00192}, Crystal -[2,07], {00907}, Voyager -[2,08], {00653}, Cyclone -[2,09], {00524}, Spectrum -[2,10], {00533}, Cosmos -[2,11], {00317}, Beacon -[3,01], {00378}, Circuit -[3,02], {00000}, UNUSED -[3,03], {00000}, UNUSED -[3,04], {00250}, Ember -[3,05], {00561}, Echo -[3,06], {00588}, Stardust -[3,07], {00654}, Cyclone -[3,08], {00613}, Polaris -[3,09], {00446}, Comet -[3,10], {00000}, UNUSED -[3,11], {00258}, Spectrum -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00776}, Atlas -[4,05], {00286}, Zenith -[4,06], {00466}, Zenith -[4,07], {00000}, UNUSED -[4,08], {00473}, Zenith -[4,09], {00809}, Nexus -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00534}, Odyssey -[5,05], {00186}, Nexus -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00626}, Infinity -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00837}, Tesla -[6,05], {00572}, Axis -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00301}, Lunar -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00611}, Titan -[7,05], {00978}, Vertex -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00675}, Nexus -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00809}, Polaris -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00269}, Spectrum -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00723}, Matrix +[01,02], {00862}, Nexus +[01,03], {00659}, Cosmos +[01,04], {00219}, Apollo +[01,05], {00968}, Dynamo +[01,06], {00546}, Echo +[01,07], {00900}, Drift +[01,08], {00945}, Comet +[01,09], {00848}, Polaris +[01,10], {00492}, Cyclone +[01,11], {00652}, Mirage +[02,01], {00458}, Matrix +[02,02], {00000}, UNUSED +[02,03], {00000}, UNUSED +[02,04], {00694}, Beacon +[02,05], {00553}, Nexus +[02,06], {00192}, Crystal +[02,07], {00907}, Voyager +[02,08], {00653}, Cyclone +[02,09], {00524}, Spectrum +[02,10], {00533}, Cosmos +[02,11], {00317}, Beacon +[03,01], {00378}, Circuit +[03,02], {00000}, UNUSED +[03,03], {00000}, UNUSED +[03,04], {00250}, Ember +[03,05], {00561}, Echo +[03,06], {00588}, Stardust +[03,07], {00654}, Cyclone +[03,08], {00613}, Polaris +[03,09], {00446}, Comet +[03,10], {00000}, UNUSED +[03,11], {00258}, Spectrum +[04,01], {00000}, UNUSED +[04,02], {00000}, UNUSED +[04,03], {00000}, UNUSED +[04,04], {00776}, Atlas +[04,05], {00286}, Zenith +[04,06], {00466}, Zenith +[04,07], {00000}, UNUSED +[04,08], {00473}, Zenith +[04,09], {00809}, Nexus +[04,10], {00000}, UNUSED +[04,11], {00000}, UNUSED +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00000}, UNUSED +[05,04], {00534}, Odyssey +[05,05], {00186}, Nexus +[05,06], {00000}, UNUSED +[05,07], {00000}, UNUSED +[05,08], {00626}, Infinity +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00837}, Tesla +[06,05], {00572}, Axis +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00301}, Lunar +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00611}, Titan +[07,05], {00978}, Vertex +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00675}, Nexus +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00809}, Polaris +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00269}, Spectrum +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/45Containers.txt b/Data/manifests/45Containers.txt index 4f0bb47..2e5aebb 100644 --- a/Data/manifests/45Containers.txt +++ b/Data/manifests/45Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00298}, Echo -[1,02], {00979}, Nexus -[1,03], {00919}, Velocity -[1,04], {00832}, Nexus -[1,05], {00956}, Polaris -[1,06], {00710}, Aurora -[1,07], {00417}, Shadow -[1,08], {00653}, Crystal -[1,09], {00937}, Apollo -[1,10], {00152}, Odyssey -[1,11], {00984}, Stardust -[2,01], {00882}, Cosmos -[2,02], {00864}, Zenith -[2,03], {00613}, Forge -[2,04], {00886}, Nimbus -[2,05], {00425}, Vertex -[2,06], {00831}, Horizon -[2,07], {00304}, Horizon -[2,08], {00744}, Spectrum -[2,09], {00897}, Atlas -[2,10], {00119}, Singularity -[2,11], {00000}, UNUSED -[3,01], {00461}, Meteor -[3,02], {00226}, Titan -[3,03], {00000}, UNUSED -[3,04], {00966}, Vertex -[3,05], {00930}, Atlas -[3,06], {00129}, Shard -[3,07], {00223}, Vertex -[3,08], {00849}, Cosmos -[3,09], {00858}, Radiance -[3,10], {00256}, Phoenix -[3,11], {00000}, UNUSED -[4,01], {00372}, Singularity -[4,02], {00000}, UNUSED -[4,03], {00000}, UNUSED -[4,04], {00461}, Apollo -[4,05], {00847}, Aurora -[4,06], {00602}, Forge -[4,07], {00677}, Velocity -[4,08], {00517}, Infinity -[4,09], {00952}, Neptune -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00858}, Prism -[5,05], {00000}, UNUSED -[5,06], {00621}, Aero -[5,07], {00449}, Eclipse -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00886}, Aero -[6,05], {00000}, UNUSED -[6,06], {00615}, Radiance -[6,07], {00609}, Comet -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00241}, Glacier -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00119}, Titan -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00298}, Echo +[01,02], {00979}, Nexus +[01,03], {00919}, Velocity +[01,04], {00832}, Nexus +[01,05], {00956}, Polaris +[01,06], {00710}, Aurora +[01,07], {00417}, Shadow +[01,08], {00653}, Crystal +[01,09], {00937}, Apollo +[01,10], {00152}, Odyssey +[01,11], {00984}, Stardust +[02,01], {00882}, Cosmos +[02,02], {00864}, Zenith +[02,03], {00613}, Forge +[02,04], {00886}, Nimbus +[02,05], {00425}, Vertex +[02,06], {00831}, Horizon +[02,07], {00304}, Horizon +[02,08], {00744}, Spectrum +[02,09], {00897}, Atlas +[02,10], {00119}, Singularity +[02,11], {00000}, UNUSED +[03,01], {00461}, Meteor +[03,02], {00226}, Titan +[03,03], {00000}, UNUSED +[03,04], {00966}, Vertex +[03,05], {00930}, Atlas +[03,06], {00129}, Shard +[03,07], {00223}, Vertex +[03,08], {00849}, Cosmos +[03,09], {00858}, Radiance +[03,10], {00256}, Phoenix +[03,11], {00000}, UNUSED +[04,01], {00372}, Singularity +[04,02], {00000}, UNUSED +[04,03], {00000}, UNUSED +[04,04], {00461}, Apollo +[04,05], {00847}, Aurora +[04,06], {00602}, Forge +[04,07], {00677}, Velocity +[04,08], {00517}, Infinity +[04,09], {00952}, Neptune +[04,10], {00000}, UNUSED +[04,11], {00000}, UNUSED +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00000}, UNUSED +[05,04], {00858}, Prism +[05,05], {00000}, UNUSED +[05,06], {00621}, Aero +[05,07], {00449}, Eclipse +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00886}, Aero +[06,05], {00000}, UNUSED +[06,06], {00615}, Radiance +[06,07], {00609}, Comet +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00241}, Glacier +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00119}, Titan +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/46Containers.txt b/Data/manifests/46Containers.txt index f222606..3fa8eb9 100644 --- a/Data/manifests/46Containers.txt +++ b/Data/manifests/46Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00108}, Gravity -[1,02], {00863}, Vertex -[1,03], {00118}, Atlas -[1,04], {00658}, Nexus -[1,05], {00517}, Cascade -[1,06], {00647}, Glacier -[1,07], {00928}, Arcadia -[1,08], {00427}, Zenith -[1,09], {00524}, Atlas -[1,10], {00314}, Velocity -[1,11], {00413}, Stardust -[2,01], {00193}, Blaze -[2,02], {00868}, Polaris -[2,03], {00763}, Eclipse -[2,04], {00480}, Axis -[2,05], {00928}, Crystal -[2,06], {00777}, Orion -[2,07], {00899}, Horizon -[2,08], {00419}, Sol -[2,09], {00674}, Nova -[2,10], {00366}, Borealis -[2,11], {00886}, Nova -[3,01], {00127}, Twilight -[3,02], {00533}, Quantum -[3,03], {00285}, Meteor -[3,04], {00567}, Voyager -[3,05], {00684}, Axis -[3,06], {00315}, Meteor -[3,07], {00739}, Comet -[3,08], {00695}, Echo -[3,09], {00517}, Cascade -[3,10], {00000}, UNUSED -[3,11], {00338}, Circuit -[4,01], {00000}, UNUSED -[4,02], {00668}, Cyclone -[4,03], {00102}, Matrix -[4,04], {00943}, Nexus -[4,05], {00362}, Ember -[4,06], {00918}, Zenith -[4,07], {00134}, Eclipse -[4,08], {00813}, Arcadia -[4,09], {00000}, UNUSED -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00785}, Matrix -[5,05], {00615}, Borealis -[5,06], {00860}, Singularity -[5,07], {00782}, Sol -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00609}, Orion -[6,06], {00749}, Dynamo -[6,07], {00913}, Shard -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00108}, Gravity +[01,02], {00863}, Vertex +[01,03], {00118}, Atlas +[01,04], {00658}, Nexus +[01,05], {00517}, Cascade +[01,06], {00647}, Glacier +[01,07], {00928}, Arcadia +[01,08], {00427}, Zenith +[01,09], {00524}, Atlas +[01,10], {00314}, Velocity +[01,11], {00413}, Stardust +[02,01], {00193}, Blaze +[02,02], {00868}, Polaris +[02,03], {00763}, Eclipse +[02,04], {00480}, Axis +[02,05], {00928}, Crystal +[02,06], {00777}, Orion +[02,07], {00899}, Horizon +[02,08], {00419}, Sol +[02,09], {00674}, Nova +[02,10], {00366}, Borealis +[02,11], {00886}, Nova +[03,01], {00127}, Twilight +[03,02], {00533}, Quantum +[03,03], {00285}, Meteor +[03,04], {00567}, Voyager +[03,05], {00684}, Axis +[03,06], {00315}, Meteor +[03,07], {00739}, Comet +[03,08], {00695}, Echo +[03,09], {00517}, Cascade +[03,10], {00000}, UNUSED +[03,11], {00338}, Circuit +[04,01], {00000}, UNUSED +[04,02], {00668}, Cyclone +[04,03], {00102}, Matrix +[04,04], {00943}, Nexus +[04,05], {00362}, Ember +[04,06], {00918}, Zenith +[04,07], {00134}, Eclipse +[04,08], {00813}, Arcadia +[04,09], {00000}, UNUSED +[04,10], {00000}, UNUSED +[04,11], {00000}, UNUSED +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00000}, UNUSED +[05,04], {00785}, Matrix +[05,05], {00615}, Borealis +[05,06], {00860}, Singularity +[05,07], {00782}, Sol +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00609}, Orion +[06,06], {00749}, Dynamo +[06,07], {00913}, Shard +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/47Containers.txt b/Data/manifests/47Containers.txt index 845da07..e5c9169 100644 --- a/Data/manifests/47Containers.txt +++ b/Data/manifests/47Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00440}, Arcadia -[1,02], {00551}, Velocity -[1,03], {00908}, Odyssey -[1,04], {00852}, Cascade -[1,05], {00485}, Spectrum -[1,06], {00644}, Forge -[1,07], {00254}, Echo -[1,08], {00632}, Spectrum -[1,09], {00117}, Cosmos -[1,10], {00678}, Shard -[1,11], {00814}, Blaze -[2,01], {00111}, Everest -[2,02], {00637}, Orion -[2,03], {00343}, Sol -[2,04], {00203}, Circuit -[2,05], {00933}, Horizon -[2,06], {00337}, Glider -[2,07], {00000}, UNUSED -[2,08], {00141}, Borealis -[2,09], {00846}, Eclipse -[2,10], {00380}, Mirage -[2,11], {00318}, Everest -[3,01], {00940}, Glacier -[3,02], {00200}, Eclipse -[3,03], {00593}, Vertex -[3,04], {00643}, Matrix -[3,05], {00174}, Spectrum -[3,06], {00210}, Everest -[3,07], {00000}, UNUSED -[3,08], {00958}, Inferno -[3,09], {00411}, Vortex -[3,10], {00909}, Nimbus -[3,11], {00130}, Twilight -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00957}, Axis -[4,04], {00987}, Tectonic -[4,05], {00963}, Cosmos -[4,06], {00576}, Drift -[4,07], {00000}, UNUSED -[4,08], {00675}, Arcadia -[4,09], {00908}, Crystal -[4,10], {00337}, Circuit -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00381}, Polaris -[5,04], {00553}, Sol -[5,05], {00364}, Zenith -[5,06], {00296}, Echo -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00750}, Borealis -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00923}, Atlas -[6,05], {00000}, UNUSED -[6,06], {00645}, Tectonic -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00680}, Forge -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00697}, Echo -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00440}, Arcadia +[01,02], {00551}, Velocity +[01,03], {00908}, Odyssey +[01,04], {00852}, Cascade +[01,05], {00485}, Spectrum +[01,06], {00644}, Forge +[01,07], {00254}, Echo +[01,08], {00632}, Spectrum +[01,09], {00117}, Cosmos +[01,10], {00678}, Shard +[01,11], {00814}, Blaze +[02,01], {00111}, Everest +[02,02], {00637}, Orion +[02,03], {00343}, Sol +[02,04], {00203}, Circuit +[02,05], {00933}, Horizon +[02,06], {00337}, Glider +[02,07], {00000}, UNUSED +[02,08], {00141}, Borealis +[02,09], {00846}, Eclipse +[02,10], {00380}, Mirage +[02,11], {00318}, Everest +[03,01], {00940}, Glacier +[03,02], {00200}, Eclipse +[03,03], {00593}, Vertex +[03,04], {00643}, Matrix +[03,05], {00174}, Spectrum +[03,06], {00210}, Everest +[03,07], {00000}, UNUSED +[03,08], {00958}, Inferno +[03,09], {00411}, Vortex +[03,10], {00909}, Nimbus +[03,11], {00130}, Twilight +[04,01], {00000}, UNUSED +[04,02], {00000}, UNUSED +[04,03], {00957}, Axis +[04,04], {00987}, Tectonic +[04,05], {00963}, Cosmos +[04,06], {00576}, Drift +[04,07], {00000}, UNUSED +[04,08], {00675}, Arcadia +[04,09], {00908}, Crystal +[04,10], {00337}, Circuit +[04,11], {00000}, UNUSED +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00381}, Polaris +[05,04], {00553}, Sol +[05,05], {00364}, Zenith +[05,06], {00296}, Echo +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00750}, Borealis +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00923}, Atlas +[06,05], {00000}, UNUSED +[06,06], {00645}, Tectonic +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00680}, Forge +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00697}, Echo +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/48Containers.txt b/Data/manifests/48Containers.txt index cd467d9..96b35be 100644 --- a/Data/manifests/48Containers.txt +++ b/Data/manifests/48Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00680}, Blaze -[1,02], {00893}, Blaze -[1,03], {00352}, Gravity -[1,04], {00394}, Vertex -[1,05], {00469}, Lunar -[1,06], {00762}, Singularity -[1,07], {00352}, Shard -[1,08], {00476}, Cyclone -[1,09], {00685}, Aurora -[1,10], {00548}, Matrix -[1,11], {00000}, UNUSED -[2,01], {00422}, Gravity -[2,02], {00242}, Nova -[2,03], {00821}, Meteor -[2,04], {00521}, Glider -[2,05], {00803}, Nexus -[2,06], {00485}, Titan -[2,07], {00362}, Shard -[2,08], {00268}, Phoenix -[2,09], {00508}, Spectrum -[2,10], {00250}, Echo -[2,11], {00000}, UNUSED -[3,01], {00000}, UNUSED -[3,02], {00355}, Echo -[3,03], {00995}, Stardust -[3,04], {00222}, Twilight -[3,05], {00553}, Solstice -[3,06], {00251}, Matrix -[3,07], {00000}, UNUSED -[3,08], {00776}, Axis -[3,09], {00951}, Beacon -[3,10], {00171}, Nimbus -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00704}, Gravity -[4,03], {00801}, Singularity -[4,04], {00475}, Nexus -[4,05], {00813}, Zephyr -[4,06], {00385}, Cyclone -[4,07], {00000}, UNUSED -[4,08], {00879}, Zephyr -[4,09], {00487}, Titan -[4,10], {00664}, Eclipse -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00462}, Cosmos -[5,03], {00587}, Tesla -[5,04], {00000}, UNUSED -[5,05], {00216}, Phoenix -[5,06], {00180}, Aurora -[5,07], {00000}, UNUSED -[5,08], {00686}, Quantum -[5,09], {00717}, Cascade -[5,10], {00717}, Cyclone -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00636}, Shadow -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00121}, Odyssey -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00189}, Cosmos -[6,09], {00926}, Velocity -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00271}, Stardust -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00680}, Blaze +[01,02], {00893}, Blaze +[01,03], {00352}, Gravity +[01,04], {00394}, Vertex +[01,05], {00469}, Lunar +[01,06], {00762}, Singularity +[01,07], {00352}, Shard +[01,08], {00476}, Cyclone +[01,09], {00685}, Aurora +[01,10], {00548}, Matrix +[01,11], {00000}, UNUSED +[02,01], {00422}, Gravity +[02,02], {00242}, Nova +[02,03], {00821}, Meteor +[02,04], {00521}, Glider +[02,05], {00803}, Nexus +[02,06], {00485}, Titan +[02,07], {00362}, Shard +[02,08], {00268}, Phoenix +[02,09], {00508}, Spectrum +[02,10], {00250}, Echo +[02,11], {00000}, UNUSED +[03,01], {00000}, UNUSED +[03,02], {00355}, Echo +[03,03], {00995}, Stardust +[03,04], {00222}, Twilight +[03,05], {00553}, Solstice +[03,06], {00251}, Matrix +[03,07], {00000}, UNUSED +[03,08], {00776}, Axis +[03,09], {00951}, Beacon +[03,10], {00171}, Nimbus +[03,11], {00000}, UNUSED +[04,01], {00000}, UNUSED +[04,02], {00704}, Gravity +[04,03], {00801}, Singularity +[04,04], {00475}, Nexus +[04,05], {00813}, Zephyr +[04,06], {00385}, Cyclone +[04,07], {00000}, UNUSED +[04,08], {00879}, Zephyr +[04,09], {00487}, Titan +[04,10], {00664}, Eclipse +[04,11], {00000}, UNUSED +[05,01], {00000}, UNUSED +[05,02], {00462}, Cosmos +[05,03], {00587}, Tesla +[05,04], {00000}, UNUSED +[05,05], {00216}, Phoenix +[05,06], {00180}, Aurora +[05,07], {00000}, UNUSED +[05,08], {00686}, Quantum +[05,09], {00717}, Cascade +[05,10], {00717}, Cyclone +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00636}, Shadow +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00121}, Odyssey +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00189}, Cosmos +[06,09], {00926}, Velocity +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00271}, Stardust +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/49Containers.txt b/Data/manifests/49Containers.txt index 523bdbe..b593661 100644 --- a/Data/manifests/49Containers.txt +++ b/Data/manifests/49Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00649}, Atlas -[1,02], {00517}, Matrix -[1,03], {00742}, Tectonic -[1,04], {00568}, Crystal -[1,05], {00645}, Nova -[1,06], {00419}, Blaze -[1,07], {00483}, Phoenix -[1,08], {00761}, Matrix -[1,09], {00477}, Shard -[1,10], {00386}, Shard -[1,11], {00576}, Shard -[2,01], {00167}, Mirage -[2,02], {00984}, Vertex -[2,03], {00102}, Odyssey -[2,04], {00959}, Neptune -[2,05], {00502}, Everest -[2,06], {00878}, Apollo -[2,07], {00000}, UNUSED -[2,08], {00158}, Gravity -[2,09], {00243}, Stardust -[2,10], {00673}, Echo -[2,11], {00621}, Inferno -[3,01], {00757}, Solstice -[3,02], {00201}, Polaris -[3,03], {00369}, Apollo -[3,04], {00974}, Vortex -[3,05], {00475}, Blaze -[3,06], {00428}, Singularity -[3,07], {00000}, UNUSED -[3,08], {00289}, Cyclone -[3,09], {00630}, Echo -[3,10], {00163}, Orion -[3,11], {00000}, UNUSED -[4,01], {00704}, Zenith -[4,02], {00000}, UNUSED -[4,03], {00211}, Aero -[4,04], {00000}, UNUSED -[4,05], {00537}, Eclipse -[4,06], {00842}, Sol -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00676}, Mirage -[4,10], {00554}, Borealis -[4,11], {00000}, UNUSED -[5,01], {00642}, Echo -[5,02], {00000}, UNUSED -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00832}, Forge -[5,06], {00789}, Aurora -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00404}, Spectrum -[5,10], {00388}, Glacier -[5,11], {00000}, UNUSED -[6,01], {00710}, Spectrum -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00210}, Shadow -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00737}, Neptune -[6,11], {00000}, UNUSED -[7,01], {00967}, Odyssey -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00776}, Forge -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00389}, Matrix -[7,11], {00000}, UNUSED -[8,01], {00845}, Twilight -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00453}, Echo -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00649}, Atlas +[01,02], {00517}, Matrix +[01,03], {00742}, Tectonic +[01,04], {00568}, Crystal +[01,05], {00645}, Nova +[01,06], {00419}, Blaze +[01,07], {00483}, Phoenix +[01,08], {00761}, Matrix +[01,09], {00477}, Shard +[01,10], {00386}, Shard +[01,11], {00576}, Shard +[02,01], {00167}, Mirage +[02,02], {00984}, Vertex +[02,03], {00102}, Odyssey +[02,04], {00959}, Neptune +[02,05], {00502}, Everest +[02,06], {00878}, Apollo +[02,07], {00000}, UNUSED +[02,08], {00158}, Gravity +[02,09], {00243}, Stardust +[02,10], {00673}, Echo +[02,11], {00621}, Inferno +[03,01], {00757}, Solstice +[03,02], {00201}, Polaris +[03,03], {00369}, Apollo +[03,04], {00974}, Vortex +[03,05], {00475}, Blaze +[03,06], {00428}, Singularity +[03,07], {00000}, UNUSED +[03,08], {00289}, Cyclone +[03,09], {00630}, Echo +[03,10], {00163}, Orion +[03,11], {00000}, UNUSED +[04,01], {00704}, Zenith +[04,02], {00000}, UNUSED +[04,03], {00211}, Aero +[04,04], {00000}, UNUSED +[04,05], {00537}, Eclipse +[04,06], {00842}, Sol +[04,07], {00000}, UNUSED +[04,08], {00000}, UNUSED +[04,09], {00676}, Mirage +[04,10], {00554}, Borealis +[04,11], {00000}, UNUSED +[05,01], {00642}, Echo +[05,02], {00000}, UNUSED +[05,03], {00000}, UNUSED +[05,04], {00000}, UNUSED +[05,05], {00832}, Forge +[05,06], {00789}, Aurora +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00404}, Spectrum +[05,10], {00388}, Glacier +[05,11], {00000}, UNUSED +[06,01], {00710}, Spectrum +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00210}, Shadow +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00737}, Neptune +[06,11], {00000}, UNUSED +[07,01], {00967}, Odyssey +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00776}, Forge +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00389}, Matrix +[07,11], {00000}, UNUSED +[08,01], {00845}, Twilight +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00453}, Echo +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/50Containers.txt b/Data/manifests/50Containers.txt index 99b81d4..2339b5a 100644 --- a/Data/manifests/50Containers.txt +++ b/Data/manifests/50Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00233}, Shard -[1,02], {00348}, Polaris -[1,03], {00774}, Aero -[1,04], {00195}, Atlas -[1,05], {00403}, Cascade -[1,06], {00143}, Echo -[1,07], {00565}, Spectrum -[1,08], {00219}, Zenith -[1,09], {00519}, Forge -[1,10], {00223}, Halo -[1,11], {00534}, Eclipse -[2,01], {00000}, UNUSED -[2,02], {00685}, Glider -[2,03], {00629}, Nimbus -[2,04], {00302}, Titan -[2,05], {00946}, Radiance -[2,06], {00990}, Vertex -[2,07], {00893}, Echo -[2,08], {00817}, Solstice -[2,09], {00623}, Glacier -[2,10], {00491}, Forge -[2,11], {00556}, Lunar -[3,01], {00000}, UNUSED -[3,02], {00514}, Nexus -[3,03], {00773}, Tectonic -[3,04], {00488}, Odyssey -[3,05], {00000}, UNUSED -[3,06], {00846}, Voyager -[3,07], {00942}, Comet -[3,08], {00130}, Vertex -[3,09], {00817}, Sol -[3,10], {00716}, Spectrum -[3,11], {00642}, Matrix -[4,01], {00000}, UNUSED -[4,02], {00117}, Everest -[4,03], {00197}, Nexus -[4,04], {00779}, Lunar -[4,05], {00000}, UNUSED -[4,06], {00000}, UNUSED -[4,07], {00667}, Glacier -[4,08], {00695}, Aurora -[4,09], {00000}, UNUSED -[4,10], {00875}, Infinity -[4,11], {00979}, Gravity -[5,01], {00000}, UNUSED -[5,02], {00239}, Vertex -[5,03], {00211}, Zenith -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00000}, UNUSED -[5,08], {00886}, Spectrum -[5,09], {00000}, UNUSED -[5,10], {00704}, Zenith -[5,11], {00157}, Beacon -[6,01], {00000}, UNUSED -[6,02], {00767}, Arcadia -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00558}, Glacier -[6,09], {00000}, UNUSED -[6,10], {00151}, Crystal -[6,11], {00709}, Halo -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00800}, Zenith -[7,11], {00554}, Axis -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00935}, Drift -[8,11], {00566}, Glider +[01,01], {00233}, Shard +[01,02], {00348}, Polaris +[01,03], {00774}, Aero +[01,04], {00195}, Atlas +[01,05], {00403}, Cascade +[01,06], {00143}, Echo +[01,07], {00565}, Spectrum +[01,08], {00219}, Zenith +[01,09], {00519}, Forge +[01,10], {00223}, Halo +[01,11], {00534}, Eclipse +[02,01], {00000}, UNUSED +[02,02], {00685}, Glider +[02,03], {00629}, Nimbus +[02,04], {00302}, Titan +[02,05], {00946}, Radiance +[02,06], {00990}, Vertex +[02,07], {00893}, Echo +[02,08], {00817}, Solstice +[02,09], {00623}, Glacier +[02,10], {00491}, Forge +[02,11], {00556}, Lunar +[03,01], {00000}, UNUSED +[03,02], {00514}, Nexus +[03,03], {00773}, Tectonic +[03,04], {00488}, Odyssey +[03,05], {00000}, UNUSED +[03,06], {00846}, Voyager +[03,07], {00942}, Comet +[03,08], {00130}, Vertex +[03,09], {00817}, Sol +[03,10], {00716}, Spectrum +[03,11], {00642}, Matrix +[04,01], {00000}, UNUSED +[04,02], {00117}, Everest +[04,03], {00197}, Nexus +[04,04], {00779}, Lunar +[04,05], {00000}, UNUSED +[04,06], {00000}, UNUSED +[04,07], {00667}, Glacier +[04,08], {00695}, Aurora +[04,09], {00000}, UNUSED +[04,10], {00875}, Infinity +[04,11], {00979}, Gravity +[05,01], {00000}, UNUSED +[05,02], {00239}, Vertex +[05,03], {00211}, Zenith +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00000}, UNUSED +[05,08], {00886}, Spectrum +[05,09], {00000}, UNUSED +[05,10], {00704}, Zenith +[05,11], {00157}, Beacon +[06,01], {00000}, UNUSED +[06,02], {00767}, Arcadia +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00558}, Glacier +[06,09], {00000}, UNUSED +[06,10], {00151}, Crystal +[06,11], {00709}, Halo +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00800}, Zenith +[07,11], {00554}, Axis +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00935}, Drift +[08,11], {00566}, Glider diff --git a/Data/manifests/51Containers.txt b/Data/manifests/51Containers.txt index 85311c9..163684a 100644 --- a/Data/manifests/51Containers.txt +++ b/Data/manifests/51Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00919}, Comet -[1,02], {00365}, Glacier -[1,03], {00674}, Singularity -[1,04], {00721}, Lunar -[1,05], {00776}, Vertex -[1,06], {00505}, Nimbus -[1,07], {00217}, Blaze -[1,08], {00639}, Singularity -[1,09], {00980}, Spectrum -[1,10], {00162}, Spectrum -[1,11], {00347}, Odyssey -[2,01], {00721}, Vortex -[2,02], {00952}, Eclipse -[2,03], {00806}, Comet -[2,04], {00343}, Orion -[2,05], {00110}, Prism -[2,06], {00207}, Horizon -[2,07], {00306}, Zenith -[2,08], {00477}, Cosmos -[2,09], {00235}, Everest -[2,10], {00801}, Phoenix -[2,11], {00257}, Tectonic -[3,01], {00254}, Atlas -[3,02], {00352}, Aurora -[3,03], {00577}, Beacon -[3,04], {00212}, Eclipse -[3,05], {00492}, Cyclone -[3,06], {00728}, Comet -[3,07], {00381}, Tectonic -[3,08], {00421}, Cyclone -[3,09], {00000}, UNUSED -[3,10], {00814}, Axis -[3,11], {00126}, Comet -[4,01], {00916}, Shard -[4,02], {00345}, Tesla -[4,03], {00239}, Zenith -[4,04], {00523}, Halo -[4,05], {00720}, Beacon -[4,06], {00297}, Sol -[4,07], {00428}, Orion -[4,08], {00000}, UNUSED -[4,09], {00000}, UNUSED -[4,10], {00308}, Voyager -[4,11], {00000}, UNUSED -[5,01], {00943}, Lunar -[5,02], {00666}, Aero -[5,03], {00101}, Everest -[5,04], {00466}, Orion -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00446}, Drift -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00844}, Echo -[5,11], {00000}, UNUSED -[6,01], {00732}, Eclipse -[6,02], {00183}, Spectrum -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00819}, Aurora -[7,02], {00818}, Shadow -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00446}, Polaris -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00919}, Comet +[01,02], {00365}, Glacier +[01,03], {00674}, Singularity +[01,04], {00721}, Lunar +[01,05], {00776}, Vertex +[01,06], {00505}, Nimbus +[01,07], {00217}, Blaze +[01,08], {00639}, Singularity +[01,09], {00980}, Spectrum +[01,10], {00162}, Spectrum +[01,11], {00347}, Odyssey +[02,01], {00721}, Vortex +[02,02], {00952}, Eclipse +[02,03], {00806}, Comet +[02,04], {00343}, Orion +[02,05], {00110}, Prism +[02,06], {00207}, Horizon +[02,07], {00306}, Zenith +[02,08], {00477}, Cosmos +[02,09], {00235}, Everest +[02,10], {00801}, Phoenix +[02,11], {00257}, Tectonic +[03,01], {00254}, Atlas +[03,02], {00352}, Aurora +[03,03], {00577}, Beacon +[03,04], {00212}, Eclipse +[03,05], {00492}, Cyclone +[03,06], {00728}, Comet +[03,07], {00381}, Tectonic +[03,08], {00421}, Cyclone +[03,09], {00000}, UNUSED +[03,10], {00814}, Axis +[03,11], {00126}, Comet +[04,01], {00916}, Shard +[04,02], {00345}, Tesla +[04,03], {00239}, Zenith +[04,04], {00523}, Halo +[04,05], {00720}, Beacon +[04,06], {00297}, Sol +[04,07], {00428}, Orion +[04,08], {00000}, UNUSED +[04,09], {00000}, UNUSED +[04,10], {00308}, Voyager +[04,11], {00000}, UNUSED +[05,01], {00943}, Lunar +[05,02], {00666}, Aero +[05,03], {00101}, Everest +[05,04], {00466}, Orion +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00446}, Drift +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00844}, Echo +[05,11], {00000}, UNUSED +[06,01], {00732}, Eclipse +[06,02], {00183}, Spectrum +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00819}, Aurora +[07,02], {00818}, Shadow +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00446}, Polaris +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/52Containers.txt b/Data/manifests/52Containers.txt index 866e69c..fb4bc7e 100644 --- a/Data/manifests/52Containers.txt +++ b/Data/manifests/52Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00756}, Drift -[1,02], {00708}, Odyssey -[1,03], {00919}, Solstice -[1,04], {00364}, Mirage -[1,05], {00579}, Glacier -[1,06], {00186}, Circuit -[1,07], {00818}, Spectrum -[1,08], {00446}, Comet -[1,09], {00418}, Echo -[1,10], {00761}, Glacier -[1,11], {00231}, Horizon -[2,01], {00555}, Horizon -[2,02], {00383}, Zephyr -[2,03], {00602}, Polaris -[2,04], {00617}, Axis -[2,05], {00399}, Velocity -[2,06], {00910}, Apollo -[2,07], {00791}, Sol -[2,08], {00929}, Eclipse -[2,09], {00323}, Nexus -[2,10], {00164}, Echo -[2,11], {00127}, Solstice -[3,01], {00000}, UNUSED -[3,02], {00811}, Tectonic -[3,03], {00887}, Singularity -[3,04], {00140}, Polaris -[3,05], {00223}, Drift -[3,06], {00738}, Phoenix -[3,07], {00665}, Lunar -[3,08], {00326}, Sol -[3,09], {00749}, Aurora -[3,10], {00936}, Echo -[3,11], {00000}, UNUSED -[4,01], {00000}, UNUSED -[4,02], {00000}, UNUSED -[4,03], {00114}, Prism -[4,04], {00754}, Eclipse -[4,05], {00633}, Gravity -[4,06], {00113}, Eclipse -[4,07], {00479}, Prism -[4,08], {00000}, UNUSED -[4,09], {00973}, Eclipse -[4,10], {00705}, Orion -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00403}, Polaris -[5,04], {00943}, Spectrum -[5,05], {00211}, Sol -[5,06], {00603}, Tectonic -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00405}, Aero -[5,10], {00165}, Ember -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00473}, Velocity -[6,04], {00650}, Blaze -[6,05], {00368}, Phoenix -[6,06], {00812}, Tesla -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00746}, Meteor -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00493}, Tesla -[7,05], {00000}, UNUSED -[7,06], {00830}, Glider -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00359}, Horizon -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00756}, Drift +[01,02], {00708}, Odyssey +[01,03], {00919}, Solstice +[01,04], {00364}, Mirage +[01,05], {00579}, Glacier +[01,06], {00186}, Circuit +[01,07], {00818}, Spectrum +[01,08], {00446}, Comet +[01,09], {00418}, Echo +[01,10], {00761}, Glacier +[01,11], {00231}, Horizon +[02,01], {00555}, Horizon +[02,02], {00383}, Zephyr +[02,03], {00602}, Polaris +[02,04], {00617}, Axis +[02,05], {00399}, Velocity +[02,06], {00910}, Apollo +[02,07], {00791}, Sol +[02,08], {00929}, Eclipse +[02,09], {00323}, Nexus +[02,10], {00164}, Echo +[02,11], {00127}, Solstice +[03,01], {00000}, UNUSED +[03,02], {00811}, Tectonic +[03,03], {00887}, Singularity +[03,04], {00140}, Polaris +[03,05], {00223}, Drift +[03,06], {00738}, Phoenix +[03,07], {00665}, Lunar +[03,08], {00326}, Sol +[03,09], {00749}, Aurora +[03,10], {00936}, Echo +[03,11], {00000}, UNUSED +[04,01], {00000}, UNUSED +[04,02], {00000}, UNUSED +[04,03], {00114}, Prism +[04,04], {00754}, Eclipse +[04,05], {00633}, Gravity +[04,06], {00113}, Eclipse +[04,07], {00479}, Prism +[04,08], {00000}, UNUSED +[04,09], {00973}, Eclipse +[04,10], {00705}, Orion +[04,11], {00000}, UNUSED +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00403}, Polaris +[05,04], {00943}, Spectrum +[05,05], {00211}, Sol +[05,06], {00603}, Tectonic +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00405}, Aero +[05,10], {00165}, Ember +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00473}, Velocity +[06,04], {00650}, Blaze +[06,05], {00368}, Phoenix +[06,06], {00812}, Tesla +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00746}, Meteor +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00493}, Tesla +[07,05], {00000}, UNUSED +[07,06], {00830}, Glider +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00359}, Horizon +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/53Containers.txt b/Data/manifests/53Containers.txt index efeb6c9..64bff61 100644 --- a/Data/manifests/53Containers.txt +++ b/Data/manifests/53Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00516}, Eclipse -[1,02], {00457}, Apollo -[1,03], {00727}, Nexus -[1,04], {00529}, Zephyr -[1,05], {00737}, Tectonic -[1,06], {00218}, Voyager -[1,07], {00180}, Blaze -[1,08], {00855}, Odyssey -[1,09], {00659}, Solstice -[1,10], {00619}, Beacon -[1,11], {00322}, Spectrum -[2,01], {00331}, Aurora -[2,02], {00324}, Vortex -[2,03], {00607}, Borealis -[2,04], {00868}, Cyclone -[2,05], {00345}, Polaris -[2,06], {00195}, Gravity -[2,07], {00552}, Sol -[2,08], {00425}, Polaris -[2,09], {00905}, Zenith -[2,10], {00294}, Polaris -[2,11], {00200}, Blaze -[3,01], {00561}, Comet -[3,02], {00142}, Infinity -[3,03], {00719}, Inferno -[3,04], {00818}, Apollo -[3,05], {00000}, UNUSED -[3,06], {00304}, Vertex -[3,07], {00347}, Comet -[3,08], {00313}, Nimbus -[3,09], {00897}, Odyssey -[3,10], {00586}, Meteor -[3,11], {00782}, Velocity -[4,01], {00334}, Infinity -[4,02], {00502}, Apollo -[4,03], {00747}, Halo -[4,04], {00314}, Halo -[4,05], {00000}, UNUSED -[4,06], {00641}, Arcadia -[4,07], {00996}, Cyclone -[4,08], {00989}, Spectrum -[4,09], {00556}, Nova -[4,10], {00321}, Blaze -[4,11], {00000}, UNUSED -[5,01], {00000}, UNUSED -[5,02], {00906}, Glacier -[5,03], {00296}, Lunar -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00122}, Echo -[5,08], {00118}, Twilight -[5,09], {00469}, Velocity -[5,10], {00287}, Spectrum -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00471}, Nova -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00635}, Polaris -[6,08], {00296}, Twilight -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00206}, Atlas -[7,08], {00929}, Sol -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00412}, Eclipse -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00516}, Eclipse +[01,02], {00457}, Apollo +[01,03], {00727}, Nexus +[01,04], {00529}, Zephyr +[01,05], {00737}, Tectonic +[01,06], {00218}, Voyager +[01,07], {00180}, Blaze +[01,08], {00855}, Odyssey +[01,09], {00659}, Solstice +[01,10], {00619}, Beacon +[01,11], {00322}, Spectrum +[02,01], {00331}, Aurora +[02,02], {00324}, Vortex +[02,03], {00607}, Borealis +[02,04], {00868}, Cyclone +[02,05], {00345}, Polaris +[02,06], {00195}, Gravity +[02,07], {00552}, Sol +[02,08], {00425}, Polaris +[02,09], {00905}, Zenith +[02,10], {00294}, Polaris +[02,11], {00200}, Blaze +[03,01], {00561}, Comet +[03,02], {00142}, Infinity +[03,03], {00719}, Inferno +[03,04], {00818}, Apollo +[03,05], {00000}, UNUSED +[03,06], {00304}, Vertex +[03,07], {00347}, Comet +[03,08], {00313}, Nimbus +[03,09], {00897}, Odyssey +[03,10], {00586}, Meteor +[03,11], {00782}, Velocity +[04,01], {00334}, Infinity +[04,02], {00502}, Apollo +[04,03], {00747}, Halo +[04,04], {00314}, Halo +[04,05], {00000}, UNUSED +[04,06], {00641}, Arcadia +[04,07], {00996}, Cyclone +[04,08], {00989}, Spectrum +[04,09], {00556}, Nova +[04,10], {00321}, Blaze +[04,11], {00000}, UNUSED +[05,01], {00000}, UNUSED +[05,02], {00906}, Glacier +[05,03], {00296}, Lunar +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00122}, Echo +[05,08], {00118}, Twilight +[05,09], {00469}, Velocity +[05,10], {00287}, Spectrum +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00471}, Nova +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00635}, Polaris +[06,08], {00296}, Twilight +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00206}, Atlas +[07,08], {00929}, Sol +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00412}, Eclipse +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/54Containers.txt b/Data/manifests/54Containers.txt index 1b66f9e..0e615f3 100644 --- a/Data/manifests/54Containers.txt +++ b/Data/manifests/54Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00416}, Polaris -[1,02], {00743}, Meteor -[1,03], {00919}, Forge -[1,04], {00370}, Stardust -[1,05], {00176}, Inferno -[1,06], {00312}, Velocity -[1,07], {00293}, Stardust -[1,08], {00452}, Titan -[1,09], {00830}, Zenith -[1,10], {00734}, Halo -[1,11], {00992}, Cosmos -[2,01], {00622}, Shadow -[2,02], {00639}, Echo -[2,03], {00404}, Drift -[2,04], {00130}, Eclipse -[2,05], {00812}, Gravity -[2,06], {00599}, Eclipse -[2,07], {00328}, Halo -[2,08], {00837}, Spectrum -[2,09], {00636}, Neptune -[2,10], {00195}, Inferno -[2,11], {00000}, UNUSED -[3,01], {00216}, Inferno -[3,02], {00292}, Comet -[3,03], {00464}, Arcadia -[3,04], {00161}, Nova -[3,05], {00471}, Nimbus -[3,06], {00321}, Tesla -[3,07], {00142}, Atlas -[3,08], {00707}, Tesla -[3,09], {00106}, Orion -[3,10], {00863}, Forge -[3,11], {00000}, UNUSED -[4,01], {00829}, Zenith -[4,02], {00688}, Inferno -[4,03], {00615}, Nova -[4,04], {00580}, Polaris -[4,05], {00377}, Twilight -[4,06], {00990}, Quantum -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00959}, Borealis -[4,10], {00809}, Echo -[4,11], {00000}, UNUSED -[5,01], {00202}, Spectrum -[5,02], {00403}, Velocity -[5,03], {00866}, Phoenix -[5,04], {00928}, Zenith -[5,05], {00000}, UNUSED -[5,06], {00359}, Infinity -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00513}, Prism -[5,11], {00000}, UNUSED -[6,01], {00333}, Blaze -[6,02], {00148}, Everest -[6,03], {00000}, UNUSED -[6,04], {00824}, Zephyr -[6,05], {00000}, UNUSED -[6,06], {00173}, Solstice -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00321}, Vortex -[7,02], {00553}, Zenith -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00102}, Zenith -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00569}, Spectrum -[8,02], {00283}, Glacier -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00416}, Polaris +[01,02], {00743}, Meteor +[01,03], {00919}, Forge +[01,04], {00370}, Stardust +[01,05], {00176}, Inferno +[01,06], {00312}, Velocity +[01,07], {00293}, Stardust +[01,08], {00452}, Titan +[01,09], {00830}, Zenith +[01,10], {00734}, Halo +[01,11], {00992}, Cosmos +[02,01], {00622}, Shadow +[02,02], {00639}, Echo +[02,03], {00404}, Drift +[02,04], {00130}, Eclipse +[02,05], {00812}, Gravity +[02,06], {00599}, Eclipse +[02,07], {00328}, Halo +[02,08], {00837}, Spectrum +[02,09], {00636}, Neptune +[02,10], {00195}, Inferno +[02,11], {00000}, UNUSED +[03,01], {00216}, Inferno +[03,02], {00292}, Comet +[03,03], {00464}, Arcadia +[03,04], {00161}, Nova +[03,05], {00471}, Nimbus +[03,06], {00321}, Tesla +[03,07], {00142}, Atlas +[03,08], {00707}, Tesla +[03,09], {00106}, Orion +[03,10], {00863}, Forge +[03,11], {00000}, UNUSED +[04,01], {00829}, Zenith +[04,02], {00688}, Inferno +[04,03], {00615}, Nova +[04,04], {00580}, Polaris +[04,05], {00377}, Twilight +[04,06], {00990}, Quantum +[04,07], {00000}, UNUSED +[04,08], {00000}, UNUSED +[04,09], {00959}, Borealis +[04,10], {00809}, Echo +[04,11], {00000}, UNUSED +[05,01], {00202}, Spectrum +[05,02], {00403}, Velocity +[05,03], {00866}, Phoenix +[05,04], {00928}, Zenith +[05,05], {00000}, UNUSED +[05,06], {00359}, Infinity +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00513}, Prism +[05,11], {00000}, UNUSED +[06,01], {00333}, Blaze +[06,02], {00148}, Everest +[06,03], {00000}, UNUSED +[06,04], {00824}, Zephyr +[06,05], {00000}, UNUSED +[06,06], {00173}, Solstice +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00321}, Vortex +[07,02], {00553}, Zenith +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00102}, Zenith +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00569}, Spectrum +[08,02], {00283}, Glacier +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/55Containers.txt b/Data/manifests/55Containers.txt index 038861e..cd09a9e 100644 --- a/Data/manifests/55Containers.txt +++ b/Data/manifests/55Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00651}, Eclipse -[1,02], {00638}, Spectrum -[1,03], {00540}, Polaris -[1,04], {00244}, Crystal -[1,05], {00136}, Echo -[1,06], {00965}, Nimbus -[1,07], {00769}, Quantum -[1,08], {00843}, Forge -[1,09], {00256}, Vortex -[1,10], {00596}, Echo -[1,11], {00633}, Phoenix -[2,01], {00274}, Echo -[2,02], {00604}, Cosmos -[2,03], {00255}, Infinity -[2,04], {00184}, Cyclone -[2,05], {00000}, UNUSED -[2,06], {00210}, Neptune -[2,07], {00743}, Radiance -[2,08], {00517}, Mirage -[2,09], {00927}, Nexus -[2,10], {00964}, Quantum -[2,11], {00932}, Prism -[3,01], {00555}, Comet -[3,02], {00897}, Echo -[3,03], {00226}, Quantum -[3,04], {00515}, Zenith -[3,05], {00000}, UNUSED -[3,06], {00212}, Zephyr -[3,07], {00899}, Halo -[3,08], {00395}, Ember -[3,09], {00507}, Prism -[3,10], {00363}, Circuit -[3,11], {00354}, Cascade -[4,01], {00170}, Glider -[4,02], {00000}, UNUSED -[4,03], {00418}, Inferno -[4,04], {00304}, Vortex -[4,05], {00000}, UNUSED -[4,06], {00868}, Borealis -[4,07], {00000}, UNUSED -[4,08], {00212}, Circuit -[4,09], {00254}, Vortex -[4,10], {00968}, Apollo -[4,11], {00653}, Velocity -[5,01], {00628}, Echo -[5,02], {00000}, UNUSED -[5,03], {00732}, Velocity -[5,04], {00928}, Matrix -[5,05], {00000}, UNUSED -[5,06], {00487}, Sol -[5,07], {00000}, UNUSED -[5,08], {00669}, Zenith -[5,09], {00553}, Zenith -[5,10], {00348}, Beacon -[5,11], {00260}, Tectonic -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00978}, Atlas -[6,04], {00215}, Horizon -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00413}, Atlas -[6,10], {00000}, UNUSED -[6,11], {00637}, Infinity -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00660}, Orion -[7,04], {00652}, Atlas -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00746}, Radiance -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00448}, Nexus -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00651}, Eclipse +[01,02], {00638}, Spectrum +[01,03], {00540}, Polaris +[01,04], {00244}, Crystal +[01,05], {00136}, Echo +[01,06], {00965}, Nimbus +[01,07], {00769}, Quantum +[01,08], {00843}, Forge +[01,09], {00256}, Vortex +[01,10], {00596}, Echo +[01,11], {00633}, Phoenix +[02,01], {00274}, Echo +[02,02], {00604}, Cosmos +[02,03], {00255}, Infinity +[02,04], {00184}, Cyclone +[02,05], {00000}, UNUSED +[02,06], {00210}, Neptune +[02,07], {00743}, Radiance +[02,08], {00517}, Mirage +[02,09], {00927}, Nexus +[02,10], {00964}, Quantum +[02,11], {00932}, Prism +[03,01], {00555}, Comet +[03,02], {00897}, Echo +[03,03], {00226}, Quantum +[03,04], {00515}, Zenith +[03,05], {00000}, UNUSED +[03,06], {00212}, Zephyr +[03,07], {00899}, Halo +[03,08], {00395}, Ember +[03,09], {00507}, Prism +[03,10], {00363}, Circuit +[03,11], {00354}, Cascade +[04,01], {00170}, Glider +[04,02], {00000}, UNUSED +[04,03], {00418}, Inferno +[04,04], {00304}, Vortex +[04,05], {00000}, UNUSED +[04,06], {00868}, Borealis +[04,07], {00000}, UNUSED +[04,08], {00212}, Circuit +[04,09], {00254}, Vortex +[04,10], {00968}, Apollo +[04,11], {00653}, Velocity +[05,01], {00628}, Echo +[05,02], {00000}, UNUSED +[05,03], {00732}, Velocity +[05,04], {00928}, Matrix +[05,05], {00000}, UNUSED +[05,06], {00487}, Sol +[05,07], {00000}, UNUSED +[05,08], {00669}, Zenith +[05,09], {00553}, Zenith +[05,10], {00348}, Beacon +[05,11], {00260}, Tectonic +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00978}, Atlas +[06,04], {00215}, Horizon +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00413}, Atlas +[06,10], {00000}, UNUSED +[06,11], {00637}, Infinity +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00660}, Orion +[07,04], {00652}, Atlas +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00746}, Radiance +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00448}, Nexus +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/56Containers.txt b/Data/manifests/56Containers.txt index 9ce8696..15ec870 100644 --- a/Data/manifests/56Containers.txt +++ b/Data/manifests/56Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00643}, Titan -[1,02], {00968}, Zenith -[1,03], {00145}, Zenith -[1,04], {00911}, Quantum -[1,05], {00919}, Orion -[1,06], {00509}, Drift -[1,07], {00367}, Blaze -[1,08], {00786}, Spectrum -[1,09], {00822}, Meteor -[1,10], {00455}, Crystal -[1,11], {00749}, Shadow -[2,01], {00719}, Vertex -[2,02], {00367}, Vertex -[2,03], {00144}, Cascade -[2,04], {00500}, Prism -[2,05], {00243}, Matrix -[2,06], {00540}, Glacier -[2,07], {00683}, Spectrum -[2,08], {00257}, Glacier -[2,09], {00649}, Nova -[2,10], {00407}, Crystal -[2,11], {00582}, Sol -[3,01], {00897}, Borealis -[3,02], {00910}, Horizon -[3,03], {00440}, Apollo -[3,04], {00000}, UNUSED -[3,05], {00252}, Blaze -[3,06], {00645}, Beacon -[3,07], {00268}, Spectrum -[3,08], {00723}, Zephyr -[3,09], {00101}, Spectrum -[3,10], {00673}, Nimbus -[3,11], {00000}, UNUSED -[4,01], {00365}, Zenith -[4,02], {00751}, Apollo -[4,03], {00217}, Arcadia -[4,04], {00000}, UNUSED -[4,05], {00599}, Gravity -[4,06], {00912}, Apollo -[4,07], {00925}, Aurora -[4,08], {00132}, Atlas -[4,09], {00832}, Zenith -[4,10], {00781}, Cosmos -[4,11], {00000}, UNUSED -[5,01], {00830}, Phoenix -[5,02], {00992}, Lunar -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00429}, Prism -[5,06], {00874}, Spectrum -[5,07], {00000}, UNUSED -[5,08], {00308}, Polaris -[5,09], {00000}, UNUSED -[5,10], {00984}, Nova -[5,11], {00000}, UNUSED -[6,01], {00382}, Eclipse -[6,02], {00000}, UNUSED -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00249}, Borealis -[6,06], {00530}, Nova -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00946}, Orion -[6,11], {00000}, UNUSED -[7,01], {00723}, Glacier -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00222}, Orion -[7,06], {00980}, Nova -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00861}, Velocity -[7,11], {00000}, UNUSED -[8,01], {00556}, Tesla -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00539}, Vertex -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00643}, Titan +[01,02], {00968}, Zenith +[01,03], {00145}, Zenith +[01,04], {00911}, Quantum +[01,05], {00919}, Orion +[01,06], {00509}, Drift +[01,07], {00367}, Blaze +[01,08], {00786}, Spectrum +[01,09], {00822}, Meteor +[01,10], {00455}, Crystal +[01,11], {00749}, Shadow +[02,01], {00719}, Vertex +[02,02], {00367}, Vertex +[02,03], {00144}, Cascade +[02,04], {00500}, Prism +[02,05], {00243}, Matrix +[02,06], {00540}, Glacier +[02,07], {00683}, Spectrum +[02,08], {00257}, Glacier +[02,09], {00649}, Nova +[02,10], {00407}, Crystal +[02,11], {00582}, Sol +[03,01], {00897}, Borealis +[03,02], {00910}, Horizon +[03,03], {00440}, Apollo +[03,04], {00000}, UNUSED +[03,05], {00252}, Blaze +[03,06], {00645}, Beacon +[03,07], {00268}, Spectrum +[03,08], {00723}, Zephyr +[03,09], {00101}, Spectrum +[03,10], {00673}, Nimbus +[03,11], {00000}, UNUSED +[04,01], {00365}, Zenith +[04,02], {00751}, Apollo +[04,03], {00217}, Arcadia +[04,04], {00000}, UNUSED +[04,05], {00599}, Gravity +[04,06], {00912}, Apollo +[04,07], {00925}, Aurora +[04,08], {00132}, Atlas +[04,09], {00832}, Zenith +[04,10], {00781}, Cosmos +[04,11], {00000}, UNUSED +[05,01], {00830}, Phoenix +[05,02], {00992}, Lunar +[05,03], {00000}, UNUSED +[05,04], {00000}, UNUSED +[05,05], {00429}, Prism +[05,06], {00874}, Spectrum +[05,07], {00000}, UNUSED +[05,08], {00308}, Polaris +[05,09], {00000}, UNUSED +[05,10], {00984}, Nova +[05,11], {00000}, UNUSED +[06,01], {00382}, Eclipse +[06,02], {00000}, UNUSED +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00249}, Borealis +[06,06], {00530}, Nova +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00946}, Orion +[06,11], {00000}, UNUSED +[07,01], {00723}, Glacier +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00222}, Orion +[07,06], {00980}, Nova +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00861}, Velocity +[07,11], {00000}, UNUSED +[08,01], {00556}, Tesla +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00539}, Vertex +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/57Containers.txt b/Data/manifests/57Containers.txt index e5069c2..2012872 100644 --- a/Data/manifests/57Containers.txt +++ b/Data/manifests/57Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00512}, Radiance -[1,02], {00835}, Dynamo -[1,03], {00957}, Singularity -[1,04], {00923}, Velocity -[1,05], {00443}, Blaze -[1,06], {00403}, Neptune -[1,07], {00723}, Everest -[1,08], {00777}, Drift -[1,09], {00382}, Quantum -[1,10], {00553}, Everest -[1,11], {00109}, Vertex -[2,01], {00457}, Prism -[2,02], {00325}, Tectonic -[2,03], {00139}, Orion -[2,04], {00881}, Tectonic -[2,05], {00488}, Stardust -[2,06], {00640}, Shard -[2,07], {00635}, Comet -[2,08], {00864}, Arcadia -[2,09], {00751}, Circuit -[2,10], {00461}, Blaze -[2,11], {00979}, Glacier -[3,01], {00934}, Orion -[3,02], {00159}, Titan -[3,03], {00916}, Crystal -[3,04], {00207}, Singularity -[3,05], {00957}, Shard -[3,06], {00305}, Glider -[3,07], {00635}, Cascade -[3,08], {00000}, UNUSED -[3,09], {00517}, Nova -[3,10], {00780}, Comet -[3,11], {00475}, Zenith -[4,01], {00000}, UNUSED -[4,02], {00857}, Atlas -[4,03], {00500}, Matrix -[4,04], {00759}, Circuit -[4,05], {00683}, Gravity -[4,06], {00176}, Echo -[4,07], {00000}, UNUSED -[4,08], {00000}, UNUSED -[4,09], {00868}, Vortex -[4,10], {00217}, Ember -[4,11], {00801}, Shard -[5,01], {00000}, UNUSED -[5,02], {00826}, Apollo -[5,03], {00182}, Quantum -[5,04], {00513}, Nexus -[5,05], {00893}, Horizon -[5,06], {00941}, Ember -[5,07], {00000}, UNUSED -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00952}, Aero -[5,11], {00597}, Zenith -[6,01], {00000}, UNUSED -[6,02], {00278}, Glacier -[6,03], {00824}, Forge -[6,04], {00000}, UNUSED -[6,05], {00336}, Aurora -[6,06], {00177}, Beacon -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00402}, Nimbus -[6,11], {00434}, Singularity -[7,01], {00000}, UNUSED -[7,02], {00831}, Vortex -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00602}, Lunar -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00479}, Blaze -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00172}, Radiance -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00512}, Radiance +[01,02], {00835}, Dynamo +[01,03], {00957}, Singularity +[01,04], {00923}, Velocity +[01,05], {00443}, Blaze +[01,06], {00403}, Neptune +[01,07], {00723}, Everest +[01,08], {00777}, Drift +[01,09], {00382}, Quantum +[01,10], {00553}, Everest +[01,11], {00109}, Vertex +[02,01], {00457}, Prism +[02,02], {00325}, Tectonic +[02,03], {00139}, Orion +[02,04], {00881}, Tectonic +[02,05], {00488}, Stardust +[02,06], {00640}, Shard +[02,07], {00635}, Comet +[02,08], {00864}, Arcadia +[02,09], {00751}, Circuit +[02,10], {00461}, Blaze +[02,11], {00979}, Glacier +[03,01], {00934}, Orion +[03,02], {00159}, Titan +[03,03], {00916}, Crystal +[03,04], {00207}, Singularity +[03,05], {00957}, Shard +[03,06], {00305}, Glider +[03,07], {00635}, Cascade +[03,08], {00000}, UNUSED +[03,09], {00517}, Nova +[03,10], {00780}, Comet +[03,11], {00475}, Zenith +[04,01], {00000}, UNUSED +[04,02], {00857}, Atlas +[04,03], {00500}, Matrix +[04,04], {00759}, Circuit +[04,05], {00683}, Gravity +[04,06], {00176}, Echo +[04,07], {00000}, UNUSED +[04,08], {00000}, UNUSED +[04,09], {00868}, Vortex +[04,10], {00217}, Ember +[04,11], {00801}, Shard +[05,01], {00000}, UNUSED +[05,02], {00826}, Apollo +[05,03], {00182}, Quantum +[05,04], {00513}, Nexus +[05,05], {00893}, Horizon +[05,06], {00941}, Ember +[05,07], {00000}, UNUSED +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00952}, Aero +[05,11], {00597}, Zenith +[06,01], {00000}, UNUSED +[06,02], {00278}, Glacier +[06,03], {00824}, Forge +[06,04], {00000}, UNUSED +[06,05], {00336}, Aurora +[06,06], {00177}, Beacon +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00402}, Nimbus +[06,11], {00434}, Singularity +[07,01], {00000}, UNUSED +[07,02], {00831}, Vortex +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00602}, Lunar +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00479}, Blaze +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00172}, Radiance +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/58Containers.txt b/Data/manifests/58Containers.txt index 5733ac5..f93a39a 100644 --- a/Data/manifests/58Containers.txt +++ b/Data/manifests/58Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00858}, Nexus -[1,02], {00889}, Circuit -[1,03], {00700}, Voyager -[1,04], {00745}, Everest -[1,05], {00505}, Aero -[1,06], {00460}, Echo -[1,07], {00613}, Eclipse -[1,08], {00748}, Radiance -[1,09], {00387}, Aero -[1,10], {00871}, Axis -[1,11], {00305}, Drift -[2,01], {00354}, Gravity -[2,02], {00184}, Shadow -[2,03], {00598}, Zenith -[2,04], {00596}, Glacier -[2,05], {00228}, Matrix -[2,06], {00684}, Cyclone -[2,07], {00261}, Halo -[2,08], {00751}, Infinity -[2,09], {00357}, Inferno -[2,10], {00712}, Infinity -[2,11], {00397}, Nexus -[3,01], {00516}, Blaze -[3,02], {00425}, Neptune -[3,03], {00427}, Solstice -[3,04], {00818}, Odyssey -[3,05], {00358}, Mirage -[3,06], {00455}, Sol -[3,07], {00306}, Vertex -[3,08], {00986}, Ember -[3,09], {00247}, Lunar -[3,10], {00194}, Quantum -[3,11], {00438}, Nova -[4,01], {00135}, Quantum -[4,02], {00000}, UNUSED -[4,03], {00676}, Vortex -[4,04], {00461}, Spectrum -[4,05], {00573}, Inferno -[4,06], {00000}, UNUSED -[4,07], {00617}, Glacier -[4,08], {00459}, Cosmos -[4,09], {00413}, Vertex -[4,10], {00285}, Echo -[4,11], {00356}, Forge -[5,01], {00000}, UNUSED -[5,02], {00000}, UNUSED -[5,03], {00882}, Dynamo -[5,04], {00382}, Echo -[5,05], {00571}, Vertex -[5,06], {00000}, UNUSED -[5,07], {00620}, Meteor -[5,08], {00000}, UNUSED -[5,09], {00677}, Everest -[5,10], {00426}, Zenith -[5,11], {00349}, Prism -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00325}, Zephyr -[6,04], {00885}, Solstice -[6,05], {00159}, Cascade -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00826}, Cascade -[6,11], {00784}, Shadow -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00953}, Nimbus -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00276}, Voyager -[7,11], {00685}, Inferno -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00281}, Echo -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00858}, Nexus +[01,02], {00889}, Circuit +[01,03], {00700}, Voyager +[01,04], {00745}, Everest +[01,05], {00505}, Aero +[01,06], {00460}, Echo +[01,07], {00613}, Eclipse +[01,08], {00748}, Radiance +[01,09], {00387}, Aero +[01,10], {00871}, Axis +[01,11], {00305}, Drift +[02,01], {00354}, Gravity +[02,02], {00184}, Shadow +[02,03], {00598}, Zenith +[02,04], {00596}, Glacier +[02,05], {00228}, Matrix +[02,06], {00684}, Cyclone +[02,07], {00261}, Halo +[02,08], {00751}, Infinity +[02,09], {00357}, Inferno +[02,10], {00712}, Infinity +[02,11], {00397}, Nexus +[03,01], {00516}, Blaze +[03,02], {00425}, Neptune +[03,03], {00427}, Solstice +[03,04], {00818}, Odyssey +[03,05], {00358}, Mirage +[03,06], {00455}, Sol +[03,07], {00306}, Vertex +[03,08], {00986}, Ember +[03,09], {00247}, Lunar +[03,10], {00194}, Quantum +[03,11], {00438}, Nova +[04,01], {00135}, Quantum +[04,02], {00000}, UNUSED +[04,03], {00676}, Vortex +[04,04], {00461}, Spectrum +[04,05], {00573}, Inferno +[04,06], {00000}, UNUSED +[04,07], {00617}, Glacier +[04,08], {00459}, Cosmos +[04,09], {00413}, Vertex +[04,10], {00285}, Echo +[04,11], {00356}, Forge +[05,01], {00000}, UNUSED +[05,02], {00000}, UNUSED +[05,03], {00882}, Dynamo +[05,04], {00382}, Echo +[05,05], {00571}, Vertex +[05,06], {00000}, UNUSED +[05,07], {00620}, Meteor +[05,08], {00000}, UNUSED +[05,09], {00677}, Everest +[05,10], {00426}, Zenith +[05,11], {00349}, Prism +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00325}, Zephyr +[06,04], {00885}, Solstice +[06,05], {00159}, Cascade +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00826}, Cascade +[06,11], {00784}, Shadow +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00953}, Nimbus +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00276}, Voyager +[07,11], {00685}, Inferno +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00281}, Echo +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/59Containers.txt b/Data/manifests/59Containers.txt index 20c200e..b8e1278 100644 --- a/Data/manifests/59Containers.txt +++ b/Data/manifests/59Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00483}, Spectrum -[1,02], {00558}, Twilight -[1,03], {00505}, Axis -[1,04], {00959}, Comet -[1,05], {00853}, Everest -[1,06], {00278}, Titan -[1,07], {00676}, Orion -[1,08], {00451}, Inferno -[1,09], {00912}, Neptune -[1,10], {00111}, Comet -[1,11], {00198}, Borealis -[2,01], {00199}, Spectrum -[2,02], {00454}, Polaris -[2,03], {00257}, Sol -[2,04], {00229}, Zenith -[2,05], {00401}, Beacon -[2,06], {00999}, Orion -[2,07], {00361}, Spectrum -[2,08], {00825}, Singularity -[2,09], {00407}, Nova -[2,10], {00642}, Cosmos -[2,11], {00745}, Echo -[3,01], {00684}, Meteor -[3,02], {00136}, Apollo -[3,03], {00674}, Horizon -[3,04], {00578}, Aurora -[3,05], {00620}, Quantum -[3,06], {00419}, Everest -[3,07], {00179}, Circuit -[3,08], {00256}, Velocity -[3,09], {00520}, Glacier -[3,10], {00429}, Spectrum -[3,11], {00358}, Borealis -[4,01], {00000}, UNUSED -[4,02], {00686}, Twilight -[4,03], {00655}, Orion -[4,04], {00980}, Spectrum -[4,05], {00280}, Crystal -[4,06], {00263}, Comet -[4,07], {00000}, UNUSED -[4,08], {00125}, Cascade -[4,09], {00509}, Infinity -[4,10], {00154}, Aurora -[4,11], {00267}, Solstice -[5,01], {00000}, UNUSED -[5,02], {00404}, Arcadia -[5,03], {00000}, UNUSED -[5,04], {00447}, Polaris -[5,05], {00000}, UNUSED -[5,06], {00397}, Odyssey -[5,07], {00000}, UNUSED -[5,08], {00241}, Twilight -[5,09], {00644}, Spectrum -[5,10], {00317}, Solstice -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00564}, Drift -[6,03], {00000}, UNUSED -[6,04], {00507}, Sol -[6,05], {00000}, UNUSED -[6,06], {00324}, Borealis -[6,07], {00000}, UNUSED -[6,08], {00765}, Titan -[6,09], {00917}, Voyager -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00837}, Polaris -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00886}, Echo -[7,09], {00538}, Radiance -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00858}, Tectonic -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00608}, Velocity -[8,09], {00789}, Lunar -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00483}, Spectrum +[01,02], {00558}, Twilight +[01,03], {00505}, Axis +[01,04], {00959}, Comet +[01,05], {00853}, Everest +[01,06], {00278}, Titan +[01,07], {00676}, Orion +[01,08], {00451}, Inferno +[01,09], {00912}, Neptune +[01,10], {00111}, Comet +[01,11], {00198}, Borealis +[02,01], {00199}, Spectrum +[02,02], {00454}, Polaris +[02,03], {00257}, Sol +[02,04], {00229}, Zenith +[02,05], {00401}, Beacon +[02,06], {00999}, Orion +[02,07], {00361}, Spectrum +[02,08], {00825}, Singularity +[02,09], {00407}, Nova +[02,10], {00642}, Cosmos +[02,11], {00745}, Echo +[03,01], {00684}, Meteor +[03,02], {00136}, Apollo +[03,03], {00674}, Horizon +[03,04], {00578}, Aurora +[03,05], {00620}, Quantum +[03,06], {00419}, Everest +[03,07], {00179}, Circuit +[03,08], {00256}, Velocity +[03,09], {00520}, Glacier +[03,10], {00429}, Spectrum +[03,11], {00358}, Borealis +[04,01], {00000}, UNUSED +[04,02], {00686}, Twilight +[04,03], {00655}, Orion +[04,04], {00980}, Spectrum +[04,05], {00280}, Crystal +[04,06], {00263}, Comet +[04,07], {00000}, UNUSED +[04,08], {00125}, Cascade +[04,09], {00509}, Infinity +[04,10], {00154}, Aurora +[04,11], {00267}, Solstice +[05,01], {00000}, UNUSED +[05,02], {00404}, Arcadia +[05,03], {00000}, UNUSED +[05,04], {00447}, Polaris +[05,05], {00000}, UNUSED +[05,06], {00397}, Odyssey +[05,07], {00000}, UNUSED +[05,08], {00241}, Twilight +[05,09], {00644}, Spectrum +[05,10], {00317}, Solstice +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00564}, Drift +[06,03], {00000}, UNUSED +[06,04], {00507}, Sol +[06,05], {00000}, UNUSED +[06,06], {00324}, Borealis +[06,07], {00000}, UNUSED +[06,08], {00765}, Titan +[06,09], {00917}, Voyager +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00837}, Polaris +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00886}, Echo +[07,09], {00538}, Radiance +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00858}, Tectonic +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00608}, Velocity +[08,09], {00789}, Lunar +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/60Containers.txt b/Data/manifests/60Containers.txt index 650dd9d..f496128 100644 --- a/Data/manifests/60Containers.txt +++ b/Data/manifests/60Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00229}, Arcadia -[1,02], {00809}, Dynamo -[1,03], {00943}, Glacier -[1,04], {00209}, Cosmos -[1,05], {00138}, Prism -[1,06], {00199}, Velocity -[1,07], {00964}, Shadow -[1,08], {00322}, Eclipse -[1,09], {00122}, Neptune -[1,10], {00750}, Everest -[1,11], {00870}, Nimbus -[2,01], {00116}, Sol -[2,02], {00859}, Spectrum -[2,03], {00617}, Phoenix -[2,04], {00631}, Axis -[2,05], {00618}, Singularity -[2,06], {00857}, Tectonic -[2,07], {00902}, Zenith -[2,08], {00286}, Sol -[2,09], {00663}, Aurora -[2,10], {00118}, Horizon -[2,11], {00686}, Velocity -[3,01], {00591}, Everest -[3,02], {00189}, Matrix -[3,03], {00534}, Tesla -[3,04], {00119}, Sol -[3,05], {00154}, Zenith -[3,06], {00163}, Everest -[3,07], {00638}, Infinity -[3,08], {00529}, Echo -[3,09], {00900}, Echo -[3,10], {00821}, Apollo -[3,11], {00160}, Lunar -[4,01], {00329}, Shadow -[4,02], {00276}, Zenith -[4,03], {00772}, Nova -[4,04], {00778}, Atlas -[4,05], {00512}, Borealis -[4,06], {00961}, Zenith -[4,07], {00402}, Zenith -[4,08], {00190}, Dynamo -[4,09], {00573}, Radiance -[4,10], {00426}, Odyssey -[4,11], {00514}, Shard -[5,01], {00135}, Vertex -[5,02], {00615}, Halo -[5,03], {00340}, Glacier -[5,04], {00379}, Horizon -[5,05], {00386}, Mirage -[5,06], {00000}, UNUSED -[5,07], {00660}, Beacon -[5,08], {00000}, UNUSED -[5,09], {00213}, Vertex -[5,10], {00148}, Zenith -[5,11], {00675}, Stardust -[6,01], {00000}, UNUSED -[6,02], {00000}, UNUSED -[6,03], {00207}, Orion -[6,04], {00554}, Twilight -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00383}, Horizon -[6,08], {00000}, UNUSED -[6,09], {00917}, Nexus -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00000}, UNUSED -[7,03], {00880}, Velocity -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00130}, Orion -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00305}, Eclipse -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00229}, Arcadia +[01,02], {00809}, Dynamo +[01,03], {00943}, Glacier +[01,04], {00209}, Cosmos +[01,05], {00138}, Prism +[01,06], {00199}, Velocity +[01,07], {00964}, Shadow +[01,08], {00322}, Eclipse +[01,09], {00122}, Neptune +[01,10], {00750}, Everest +[01,11], {00870}, Nimbus +[02,01], {00116}, Sol +[02,02], {00859}, Spectrum +[02,03], {00617}, Phoenix +[02,04], {00631}, Axis +[02,05], {00618}, Singularity +[02,06], {00857}, Tectonic +[02,07], {00902}, Zenith +[02,08], {00286}, Sol +[02,09], {00663}, Aurora +[02,10], {00118}, Horizon +[02,11], {00686}, Velocity +[03,01], {00591}, Everest +[03,02], {00189}, Matrix +[03,03], {00534}, Tesla +[03,04], {00119}, Sol +[03,05], {00154}, Zenith +[03,06], {00163}, Everest +[03,07], {00638}, Infinity +[03,08], {00529}, Echo +[03,09], {00900}, Echo +[03,10], {00821}, Apollo +[03,11], {00160}, Lunar +[04,01], {00329}, Shadow +[04,02], {00276}, Zenith +[04,03], {00772}, Nova +[04,04], {00778}, Atlas +[04,05], {00512}, Borealis +[04,06], {00961}, Zenith +[04,07], {00402}, Zenith +[04,08], {00190}, Dynamo +[04,09], {00573}, Radiance +[04,10], {00426}, Odyssey +[04,11], {00514}, Shard +[05,01], {00135}, Vertex +[05,02], {00615}, Halo +[05,03], {00340}, Glacier +[05,04], {00379}, Horizon +[05,05], {00386}, Mirage +[05,06], {00000}, UNUSED +[05,07], {00660}, Beacon +[05,08], {00000}, UNUSED +[05,09], {00213}, Vertex +[05,10], {00148}, Zenith +[05,11], {00675}, Stardust +[06,01], {00000}, UNUSED +[06,02], {00000}, UNUSED +[06,03], {00207}, Orion +[06,04], {00554}, Twilight +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00383}, Horizon +[06,08], {00000}, UNUSED +[06,09], {00917}, Nexus +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00000}, UNUSED +[07,03], {00880}, Velocity +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00130}, Orion +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00305}, Eclipse +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/61Containers.txt b/Data/manifests/61Containers.txt index 34ac3b0..b475aaf 100644 --- a/Data/manifests/61Containers.txt +++ b/Data/manifests/61Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00613}, Eclipse -[1,02], {00666}, Quantum -[1,03], {00303}, Tesla -[1,04], {00802}, Mirage -[1,05], {00374}, Shadow -[1,06], {00188}, Zenith -[1,07], {00261}, Solstice -[1,08], {00690}, Axis -[1,09], {00744}, Atlas -[1,10], {00493}, Mirage -[1,11], {00401}, Atlas -[2,01], {00283}, Twilight -[2,02], {00464}, Odyssey -[2,03], {00996}, Glider -[2,04], {00751}, Spectrum -[2,05], {00746}, Spectrum -[2,06], {00137}, Matrix -[2,07], {00659}, Dynamo -[2,08], {00165}, Zenith -[2,09], {00723}, Shadow -[2,10], {00487}, Shadow -[2,11], {00907}, Spectrum -[3,01], {00718}, Circuit -[3,02], {00731}, Velocity -[3,03], {00104}, Crystal -[3,04], {00657}, Nimbus -[3,05], {00249}, Shard -[3,06], {00887}, Phoenix -[3,07], {00221}, Velocity -[3,08], {00693}, Eclipse -[3,09], {00000}, UNUSED -[3,10], {00387}, Glider -[3,11], {00872}, Echo -[4,01], {00328}, Eclipse -[4,02], {00328}, Infinity -[4,03], {00914}, Voyager -[4,04], {00183}, Solstice -[4,05], {00631}, Spectrum -[4,06], {00754}, Polaris -[4,07], {00649}, Eclipse -[4,08], {00699}, Zenith -[4,09], {00000}, UNUSED -[4,10], {00307}, Sol -[4,11], {00199}, Zephyr -[5,01], {00000}, UNUSED -[5,02], {00809}, Everest -[5,03], {00118}, Cyclone -[5,04], {00000}, UNUSED -[5,05], {00000}, UNUSED -[5,06], {00821}, Apollo -[5,07], {00100}, Solstice -[5,08], {00389}, Velocity -[5,09], {00000}, UNUSED -[5,10], {00405}, Phoenix -[5,11], {00958}, Gravity -[6,01], {00000}, UNUSED -[6,02], {00797}, Mirage -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00000}, UNUSED -[6,06], {00376}, Mirage -[6,07], {00439}, Gravity -[6,08], {00294}, Horizon -[6,09], {00000}, UNUSED -[6,10], {00632}, Mirage -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00869}, Aero -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00729}, Lunar -[7,08], {00540}, Arcadia -[7,09], {00000}, UNUSED -[7,10], {00245}, Stardust -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00705}, Infinity -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00997}, Crystal -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00951}, Vertex -[8,11], {00000}, UNUSED +[01,01], {00613}, Eclipse +[01,02], {00666}, Quantum +[01,03], {00303}, Tesla +[01,04], {00802}, Mirage +[01,05], {00374}, Shadow +[01,06], {00188}, Zenith +[01,07], {00261}, Solstice +[01,08], {00690}, Axis +[01,09], {00744}, Atlas +[01,10], {00493}, Mirage +[01,11], {00401}, Atlas +[02,01], {00283}, Twilight +[02,02], {00464}, Odyssey +[02,03], {00996}, Glider +[02,04], {00751}, Spectrum +[02,05], {00746}, Spectrum +[02,06], {00137}, Matrix +[02,07], {00659}, Dynamo +[02,08], {00165}, Zenith +[02,09], {00723}, Shadow +[02,10], {00487}, Shadow +[02,11], {00907}, Spectrum +[03,01], {00718}, Circuit +[03,02], {00731}, Velocity +[03,03], {00104}, Crystal +[03,04], {00657}, Nimbus +[03,05], {00249}, Shard +[03,06], {00887}, Phoenix +[03,07], {00221}, Velocity +[03,08], {00693}, Eclipse +[03,09], {00000}, UNUSED +[03,10], {00387}, Glider +[03,11], {00872}, Echo +[04,01], {00328}, Eclipse +[04,02], {00328}, Infinity +[04,03], {00914}, Voyager +[04,04], {00183}, Solstice +[04,05], {00631}, Spectrum +[04,06], {00754}, Polaris +[04,07], {00649}, Eclipse +[04,08], {00699}, Zenith +[04,09], {00000}, UNUSED +[04,10], {00307}, Sol +[04,11], {00199}, Zephyr +[05,01], {00000}, UNUSED +[05,02], {00809}, Everest +[05,03], {00118}, Cyclone +[05,04], {00000}, UNUSED +[05,05], {00000}, UNUSED +[05,06], {00821}, Apollo +[05,07], {00100}, Solstice +[05,08], {00389}, Velocity +[05,09], {00000}, UNUSED +[05,10], {00405}, Phoenix +[05,11], {00958}, Gravity +[06,01], {00000}, UNUSED +[06,02], {00797}, Mirage +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00000}, UNUSED +[06,06], {00376}, Mirage +[06,07], {00439}, Gravity +[06,08], {00294}, Horizon +[06,09], {00000}, UNUSED +[06,10], {00632}, Mirage +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00869}, Aero +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00729}, Lunar +[07,08], {00540}, Arcadia +[07,09], {00000}, UNUSED +[07,10], {00245}, Stardust +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00705}, Infinity +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00997}, Crystal +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00951}, Vertex +[08,11], {00000}, UNUSED diff --git a/Data/manifests/62Containers.txt b/Data/manifests/62Containers.txt index 601370a..c515385 100644 --- a/Data/manifests/62Containers.txt +++ b/Data/manifests/62Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00562}, Zenith -[1,02], {00939}, Beacon -[1,03], {00349}, Neptune -[1,04], {00442}, Drift -[1,05], {00588}, Spectrum -[1,06], {00185}, Neptune -[1,07], {00549}, Tesla -[1,08], {00249}, Zephyr -[1,09], {00162}, Borealis -[1,10], {00210}, Velocity -[1,11], {00654}, Singularity -[2,01], {00683}, Velocity -[2,02], {00959}, Nimbus -[2,03], {00278}, Voyager -[2,04], {00926}, Twilight -[2,05], {00122}, Everest -[2,06], {00513}, Shadow -[2,07], {00625}, Odyssey -[2,08], {00810}, Glider -[2,09], {00398}, Crystal -[2,10], {00975}, Comet -[2,11], {00342}, Apollo -[3,01], {00834}, Singularity -[3,02], {00933}, Neptune -[3,03], {00585}, Tectonic -[3,04], {00149}, Velocity -[3,05], {00903}, Voyager -[3,06], {00669}, Arcadia -[3,07], {00618}, Horizon -[3,08], {00760}, Horizon -[3,09], {00962}, Borealis -[3,10], {00929}, Atlas -[3,11], {00145}, Mirage -[4,01], {00427}, Vertex -[4,02], {00430}, Axis -[4,03], {00175}, Spectrum -[4,04], {00342}, Velocity -[4,05], {00361}, Twilight -[4,06], {00909}, Stardust -[4,07], {00966}, Aero -[4,08], {00992}, Echo -[4,09], {00380}, Prism -[4,10], {00591}, Shard -[4,11], {00903}, Axis -[5,01], {00124}, Zephyr -[5,02], {00818}, Cosmos -[5,03], {00494}, Cyclone -[5,04], {00117}, Horizon -[5,05], {00423}, Drift -[5,06], {00000}, UNUSED -[5,07], {00281}, Titan -[5,08], {00000}, UNUSED -[5,09], {00000}, UNUSED -[5,10], {00000}, UNUSED -[5,11], {00751}, Vertex -[6,01], {00000}, UNUSED -[6,02], {00786}, Prism -[6,03], {00436}, Twilight -[6,04], {00611}, Neptune -[6,05], {00644}, Twilight -[6,06], {00000}, UNUSED -[6,07], {00861}, Spectrum -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00752}, Sol -[7,01], {00000}, UNUSED -[7,02], {00954}, Singularity -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00978}, Titan -[7,06], {00000}, UNUSED -[7,07], {00475}, Shard -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00335}, Meteor -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00793}, Singularity -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00562}, Zenith +[01,02], {00939}, Beacon +[01,03], {00349}, Neptune +[01,04], {00442}, Drift +[01,05], {00588}, Spectrum +[01,06], {00185}, Neptune +[01,07], {00549}, Tesla +[01,08], {00249}, Zephyr +[01,09], {00162}, Borealis +[01,10], {00210}, Velocity +[01,11], {00654}, Singularity +[02,01], {00683}, Velocity +[02,02], {00959}, Nimbus +[02,03], {00278}, Voyager +[02,04], {00926}, Twilight +[02,05], {00122}, Everest +[02,06], {00513}, Shadow +[02,07], {00625}, Odyssey +[02,08], {00810}, Glider +[02,09], {00398}, Crystal +[02,10], {00975}, Comet +[02,11], {00342}, Apollo +[03,01], {00834}, Singularity +[03,02], {00933}, Neptune +[03,03], {00585}, Tectonic +[03,04], {00149}, Velocity +[03,05], {00903}, Voyager +[03,06], {00669}, Arcadia +[03,07], {00618}, Horizon +[03,08], {00760}, Horizon +[03,09], {00962}, Borealis +[03,10], {00929}, Atlas +[03,11], {00145}, Mirage +[04,01], {00427}, Vertex +[04,02], {00430}, Axis +[04,03], {00175}, Spectrum +[04,04], {00342}, Velocity +[04,05], {00361}, Twilight +[04,06], {00909}, Stardust +[04,07], {00966}, Aero +[04,08], {00992}, Echo +[04,09], {00380}, Prism +[04,10], {00591}, Shard +[04,11], {00903}, Axis +[05,01], {00124}, Zephyr +[05,02], {00818}, Cosmos +[05,03], {00494}, Cyclone +[05,04], {00117}, Horizon +[05,05], {00423}, Drift +[05,06], {00000}, UNUSED +[05,07], {00281}, Titan +[05,08], {00000}, UNUSED +[05,09], {00000}, UNUSED +[05,10], {00000}, UNUSED +[05,11], {00751}, Vertex +[06,01], {00000}, UNUSED +[06,02], {00786}, Prism +[06,03], {00436}, Twilight +[06,04], {00611}, Neptune +[06,05], {00644}, Twilight +[06,06], {00000}, UNUSED +[06,07], {00861}, Spectrum +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00752}, Sol +[07,01], {00000}, UNUSED +[07,02], {00954}, Singularity +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00978}, Titan +[07,06], {00000}, UNUSED +[07,07], {00475}, Shard +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00335}, Meteor +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00793}, Singularity +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/63Containers.txt b/Data/manifests/63Containers.txt index 977ff09..6a1c18d 100644 --- a/Data/manifests/63Containers.txt +++ b/Data/manifests/63Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00377}, Vertex -[1,02], {00671}, Vertex -[1,03], {00704}, Mirage -[1,04], {00767}, Eclipse -[1,05], {00872}, Neptune -[1,06], {00781}, Arcadia -[1,07], {00661}, Polaris -[1,08], {00887}, Everest -[1,09], {00997}, Shadow -[1,10], {00415}, Cascade -[1,11], {00249}, Shard -[2,01], {00865}, Apollo -[2,02], {00635}, Spectrum -[2,03], {00730}, Singularity -[2,04], {00193}, Horizon -[2,05], {00781}, Horizon -[2,06], {00000}, UNUSED -[2,07], {00239}, Nexus -[2,08], {00543}, Eclipse -[2,09], {00610}, Echo -[2,10], {00705}, Borealis -[2,11], {00773}, Cyclone -[3,01], {00635}, Quantum -[3,02], {00158}, Tesla -[3,03], {00328}, Tectonic -[3,04], {00598}, Vertex -[3,05], {00443}, Solstice -[3,06], {00000}, UNUSED -[3,07], {00959}, Atlas -[3,08], {00219}, Matrix -[3,09], {00159}, Spectrum -[3,10], {00808}, Stardust -[3,11], {00351}, Nimbus -[4,01], {00121}, Cascade -[4,02], {00749}, Sol -[4,03], {00284}, Gravity -[4,04], {00688}, Radiance -[4,05], {00419}, Velocity -[4,06], {00000}, UNUSED -[4,07], {00522}, Spectrum -[4,08], {00284}, Zenith -[4,09], {00262}, Axis -[4,10], {00129}, Aurora -[4,11], {00379}, Polaris -[5,01], {00489}, Phoenix -[5,02], {00303}, Halo -[5,03], {00935}, Vortex -[5,04], {00161}, Singularity -[5,05], {00897}, Cyclone -[5,06], {00000}, UNUSED -[5,07], {00416}, Echo -[5,08], {00968}, Echo -[5,09], {00000}, UNUSED -[5,10], {00268}, Vertex -[5,11], {00707}, Drift -[6,01], {00638}, Echo -[6,02], {00000}, UNUSED -[6,03], {00937}, Borealis -[6,04], {00862}, Arcadia -[6,05], {00315}, Radiance -[6,06], {00000}, UNUSED -[6,07], {00479}, Sol -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00427}, Shard -[6,11], {00763}, Mirage -[7,01], {00745}, Inferno -[7,02], {00000}, UNUSED -[7,03], {00981}, Velocity -[7,04], {00000}, UNUSED -[7,05], {00931}, Ember -[7,06], {00000}, UNUSED -[7,07], {00458}, Crystal -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00461}, Nova -[8,06], {00000}, UNUSED -[8,07], {00942}, Lunar -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00377}, Vertex +[01,02], {00671}, Vertex +[01,03], {00704}, Mirage +[01,04], {00767}, Eclipse +[01,05], {00872}, Neptune +[01,06], {00781}, Arcadia +[01,07], {00661}, Polaris +[01,08], {00887}, Everest +[01,09], {00997}, Shadow +[01,10], {00415}, Cascade +[01,11], {00249}, Shard +[02,01], {00865}, Apollo +[02,02], {00635}, Spectrum +[02,03], {00730}, Singularity +[02,04], {00193}, Horizon +[02,05], {00781}, Horizon +[02,06], {00000}, UNUSED +[02,07], {00239}, Nexus +[02,08], {00543}, Eclipse +[02,09], {00610}, Echo +[02,10], {00705}, Borealis +[02,11], {00773}, Cyclone +[03,01], {00635}, Quantum +[03,02], {00158}, Tesla +[03,03], {00328}, Tectonic +[03,04], {00598}, Vertex +[03,05], {00443}, Solstice +[03,06], {00000}, UNUSED +[03,07], {00959}, Atlas +[03,08], {00219}, Matrix +[03,09], {00159}, Spectrum +[03,10], {00808}, Stardust +[03,11], {00351}, Nimbus +[04,01], {00121}, Cascade +[04,02], {00749}, Sol +[04,03], {00284}, Gravity +[04,04], {00688}, Radiance +[04,05], {00419}, Velocity +[04,06], {00000}, UNUSED +[04,07], {00522}, Spectrum +[04,08], {00284}, Zenith +[04,09], {00262}, Axis +[04,10], {00129}, Aurora +[04,11], {00379}, Polaris +[05,01], {00489}, Phoenix +[05,02], {00303}, Halo +[05,03], {00935}, Vortex +[05,04], {00161}, Singularity +[05,05], {00897}, Cyclone +[05,06], {00000}, UNUSED +[05,07], {00416}, Echo +[05,08], {00968}, Echo +[05,09], {00000}, UNUSED +[05,10], {00268}, Vertex +[05,11], {00707}, Drift +[06,01], {00638}, Echo +[06,02], {00000}, UNUSED +[06,03], {00937}, Borealis +[06,04], {00862}, Arcadia +[06,05], {00315}, Radiance +[06,06], {00000}, UNUSED +[06,07], {00479}, Sol +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00427}, Shard +[06,11], {00763}, Mirage +[07,01], {00745}, Inferno +[07,02], {00000}, UNUSED +[07,03], {00981}, Velocity +[07,04], {00000}, UNUSED +[07,05], {00931}, Ember +[07,06], {00000}, UNUSED +[07,07], {00458}, Crystal +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00461}, Nova +[08,06], {00000}, UNUSED +[08,07], {00942}, Lunar +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/64Containers.txt b/Data/manifests/64Containers.txt index 3cfd2f2..c0a4171 100644 --- a/Data/manifests/64Containers.txt +++ b/Data/manifests/64Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00148}, Aero -[1,02], {00759}, Aero -[1,03], {00968}, Eclipse -[1,04], {00248}, Drift -[1,05], {00901}, Eclipse -[1,06], {00460}, Zephyr -[1,07], {00486}, Spectrum -[1,08], {00298}, Shadow -[1,09], {00775}, Everest -[1,10], {00389}, Vertex -[1,11], {00789}, Cyclone -[2,01], {00156}, Stardust -[2,02], {00902}, Velocity -[2,03], {00129}, Twilight -[2,04], {00751}, Tectonic -[2,05], {00803}, Circuit -[2,06], {00114}, Sol -[2,07], {00877}, Spectrum -[2,08], {00565}, Velocity -[2,09], {00771}, Forge -[2,10], {00947}, Vertex -[2,11], {00372}, Tectonic -[3,01], {00694}, Apollo -[3,02], {00770}, Glacier -[3,03], {00204}, Vertex -[3,04], {00626}, Prism -[3,05], {00943}, Atlas -[3,06], {00226}, Drift -[3,07], {00568}, Nexus -[3,08], {00780}, Spectrum -[3,09], {00710}, Vertex -[3,10], {00870}, Titan -[3,11], {00640}, Spectrum -[4,01], {00406}, Glider -[4,02], {00563}, Shadow -[4,03], {00000}, UNUSED -[4,04], {00957}, Cosmos -[4,05], {00939}, Zephyr -[4,06], {00824}, Ember -[4,07], {00576}, Arcadia -[4,08], {00951}, Voyager -[4,09], {00263}, Titan -[4,10], {00158}, Nova -[4,11], {00765}, Vortex -[5,01], {00000}, UNUSED -[5,02], {00396}, Glider -[5,03], {00000}, UNUSED -[5,04], {00718}, Horizon -[5,05], {00950}, Eclipse -[5,06], {00547}, Shadow -[5,07], {00765}, Comet -[5,08], {00973}, Velocity -[5,09], {00432}, Zenith -[5,10], {00000}, UNUSED -[5,11], {00621}, Atlas -[6,01], {00000}, UNUSED -[6,02], {00430}, Vertex -[6,03], {00000}, UNUSED -[6,04], {00524}, Halo -[6,05], {00218}, Circuit -[6,06], {00329}, Shard -[6,07], {00000}, UNUSED -[6,08], {00453}, Comet -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00373}, Odyssey -[7,01], {00000}, UNUSED -[7,02], {00338}, Horizon -[7,03], {00000}, UNUSED -[7,04], {00403}, Glider -[7,05], {00214}, Arcadia -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00992}, Infinity -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00253}, Cosmos -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00307}, Voyager -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00558}, Borealis +[01,01], {00148}, Aero +[01,02], {00759}, Aero +[01,03], {00968}, Eclipse +[01,04], {00248}, Drift +[01,05], {00901}, Eclipse +[01,06], {00460}, Zephyr +[01,07], {00486}, Spectrum +[01,08], {00298}, Shadow +[01,09], {00775}, Everest +[01,10], {00389}, Vertex +[01,11], {00789}, Cyclone +[02,01], {00156}, Stardust +[02,02], {00902}, Velocity +[02,03], {00129}, Twilight +[02,04], {00751}, Tectonic +[02,05], {00803}, Circuit +[02,06], {00114}, Sol +[02,07], {00877}, Spectrum +[02,08], {00565}, Velocity +[02,09], {00771}, Forge +[02,10], {00947}, Vertex +[02,11], {00372}, Tectonic +[03,01], {00694}, Apollo +[03,02], {00770}, Glacier +[03,03], {00204}, Vertex +[03,04], {00626}, Prism +[03,05], {00943}, Atlas +[03,06], {00226}, Drift +[03,07], {00568}, Nexus +[03,08], {00780}, Spectrum +[03,09], {00710}, Vertex +[03,10], {00870}, Titan +[03,11], {00640}, Spectrum +[04,01], {00406}, Glider +[04,02], {00563}, Shadow +[04,03], {00000}, UNUSED +[04,04], {00957}, Cosmos +[04,05], {00939}, Zephyr +[04,06], {00824}, Ember +[04,07], {00576}, Arcadia +[04,08], {00951}, Voyager +[04,09], {00263}, Titan +[04,10], {00158}, Nova +[04,11], {00765}, Vortex +[05,01], {00000}, UNUSED +[05,02], {00396}, Glider +[05,03], {00000}, UNUSED +[05,04], {00718}, Horizon +[05,05], {00950}, Eclipse +[05,06], {00547}, Shadow +[05,07], {00765}, Comet +[05,08], {00973}, Velocity +[05,09], {00432}, Zenith +[05,10], {00000}, UNUSED +[05,11], {00621}, Atlas +[06,01], {00000}, UNUSED +[06,02], {00430}, Vertex +[06,03], {00000}, UNUSED +[06,04], {00524}, Halo +[06,05], {00218}, Circuit +[06,06], {00329}, Shard +[06,07], {00000}, UNUSED +[06,08], {00453}, Comet +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00373}, Odyssey +[07,01], {00000}, UNUSED +[07,02], {00338}, Horizon +[07,03], {00000}, UNUSED +[07,04], {00403}, Glider +[07,05], {00214}, Arcadia +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00992}, Infinity +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00253}, Cosmos +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00307}, Voyager +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00558}, Borealis diff --git a/Data/manifests/65Containers.txt b/Data/manifests/65Containers.txt index 8f7df3d..284ab4a 100644 --- a/Data/manifests/65Containers.txt +++ b/Data/manifests/65Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00323}, Cascade -[1,02], {00616}, Glacier -[1,03], {00262}, Prism -[1,04], {00195}, Velocity -[1,05], {00691}, Circuit -[1,06], {00751}, Spectrum -[1,07], {00245}, Voyager -[1,08], {00384}, Velocity -[1,09], {00717}, Radiance -[1,10], {00515}, Velocity -[1,11], {00405}, Echo -[2,01], {00913}, Ember -[2,02], {00273}, Circuit -[2,03], {00249}, Shard -[2,04], {00612}, Spectrum -[2,05], {00959}, Prism -[2,06], {00737}, Nimbus -[2,07], {00900}, Cascade -[2,08], {00791}, Crystal -[2,09], {00810}, Orion -[2,10], {00226}, Dynamo -[2,11], {00610}, Echo -[3,01], {00694}, Polaris -[3,02], {00910}, Forge -[3,03], {00437}, Glider -[3,04], {00190}, Glacier -[3,05], {00807}, Eclipse -[3,06], {00776}, Horizon -[3,07], {00810}, Nova -[3,08], {00158}, Forge -[3,09], {00957}, Dynamo -[3,10], {00675}, Orion -[3,11], {00808}, Titan -[4,01], {00266}, Mirage -[4,02], {00505}, Horizon -[4,03], {00334}, Horizon -[4,04], {00712}, Circuit -[4,05], {00417}, Spectrum -[4,06], {00766}, Infinity -[4,07], {00682}, Beacon -[4,08], {00000}, UNUSED -[4,09], {00747}, Blaze -[4,10], {00632}, Mirage -[4,11], {00721}, Zenith -[5,01], {00191}, Spectrum -[5,02], {00143}, Velocity -[5,03], {00955}, Vertex -[5,04], {00197}, Meteor -[5,05], {00000}, UNUSED -[5,06], {00000}, UNUSED -[5,07], {00977}, Sol -[5,08], {00000}, UNUSED -[5,09], {00807}, Nexus -[5,10], {00303}, Glider -[5,11], {00568}, Spectrum -[6,01], {00364}, Circuit -[6,02], {00601}, Odyssey -[6,03], {00389}, Velocity -[6,04], {00701}, Twilight -[6,05], {00000}, UNUSED -[6,06], {00000}, UNUSED -[6,07], {00730}, Singularity -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00107}, Horizon -[6,11], {00000}, UNUSED -[7,01], {00315}, Horizon -[7,02], {00108}, Borealis -[7,03], {00000}, UNUSED -[7,04], {00949}, Velocity -[7,05], {00000}, UNUSED -[7,06], {00000}, UNUSED -[7,07], {00593}, Velocity -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00916}, Borealis -[7,11], {00000}, UNUSED -[8,01], {00352}, Comet -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00969}, Ember -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00997}, Halo -[8,11], {00000}, UNUSED +[01,01], {00323}, Cascade +[01,02], {00616}, Glacier +[01,03], {00262}, Prism +[01,04], {00195}, Velocity +[01,05], {00691}, Circuit +[01,06], {00751}, Spectrum +[01,07], {00245}, Voyager +[01,08], {00384}, Velocity +[01,09], {00717}, Radiance +[01,10], {00515}, Velocity +[01,11], {00405}, Echo +[02,01], {00913}, Ember +[02,02], {00273}, Circuit +[02,03], {00249}, Shard +[02,04], {00612}, Spectrum +[02,05], {00959}, Prism +[02,06], {00737}, Nimbus +[02,07], {00900}, Cascade +[02,08], {00791}, Crystal +[02,09], {00810}, Orion +[02,10], {00226}, Dynamo +[02,11], {00610}, Echo +[03,01], {00694}, Polaris +[03,02], {00910}, Forge +[03,03], {00437}, Glider +[03,04], {00190}, Glacier +[03,05], {00807}, Eclipse +[03,06], {00776}, Horizon +[03,07], {00810}, Nova +[03,08], {00158}, Forge +[03,09], {00957}, Dynamo +[03,10], {00675}, Orion +[03,11], {00808}, Titan +[04,01], {00266}, Mirage +[04,02], {00505}, Horizon +[04,03], {00334}, Horizon +[04,04], {00712}, Circuit +[04,05], {00417}, Spectrum +[04,06], {00766}, Infinity +[04,07], {00682}, Beacon +[04,08], {00000}, UNUSED +[04,09], {00747}, Blaze +[04,10], {00632}, Mirage +[04,11], {00721}, Zenith +[05,01], {00191}, Spectrum +[05,02], {00143}, Velocity +[05,03], {00955}, Vertex +[05,04], {00197}, Meteor +[05,05], {00000}, UNUSED +[05,06], {00000}, UNUSED +[05,07], {00977}, Sol +[05,08], {00000}, UNUSED +[05,09], {00807}, Nexus +[05,10], {00303}, Glider +[05,11], {00568}, Spectrum +[06,01], {00364}, Circuit +[06,02], {00601}, Odyssey +[06,03], {00389}, Velocity +[06,04], {00701}, Twilight +[06,05], {00000}, UNUSED +[06,06], {00000}, UNUSED +[06,07], {00730}, Singularity +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00107}, Horizon +[06,11], {00000}, UNUSED +[07,01], {00315}, Horizon +[07,02], {00108}, Borealis +[07,03], {00000}, UNUSED +[07,04], {00949}, Velocity +[07,05], {00000}, UNUSED +[07,06], {00000}, UNUSED +[07,07], {00593}, Velocity +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00916}, Borealis +[07,11], {00000}, UNUSED +[08,01], {00352}, Comet +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00969}, Ember +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00997}, Halo +[08,11], {00000}, UNUSED diff --git a/Data/manifests/66Containers.txt b/Data/manifests/66Containers.txt index fa4121c..b9237ec 100644 --- a/Data/manifests/66Containers.txt +++ b/Data/manifests/66Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00377}, Circuit -[1,02], {00255}, Neptune -[1,03], {00590}, Spectrum -[1,04], {00341}, Beacon -[1,05], {00228}, Aero -[1,06], {00949}, Phoenix -[1,07], {00968}, Zephyr -[1,08], {00855}, Velocity -[1,09], {00200}, Cascade -[1,10], {00556}, Horizon -[1,11], {00355}, Spectrum -[2,01], {00963}, Twilight -[2,02], {00823}, Meteor -[2,03], {00651}, Glider -[2,04], {00389}, Mirage -[2,05], {00465}, Orion -[2,06], {00496}, Velocity -[2,07], {00836}, Spectrum -[2,08], {00593}, Echo -[2,09], {00316}, Aero -[2,10], {00245}, Blaze -[2,11], {00697}, Eclipse -[3,01], {00982}, Horizon -[3,02], {00152}, Twilight -[3,03], {00806}, Tesla -[3,04], {00742}, Horizon -[3,05], {00106}, Orion -[3,06], {00741}, Singularity -[3,07], {00676}, Gravity -[3,08], {00955}, Spectrum -[3,09], {00284}, Aero -[3,10], {00992}, Odyssey -[3,11], {00274}, Spectrum -[4,01], {00788}, Cascade -[4,02], {00410}, Matrix -[4,03], {00920}, Nova -[4,04], {00197}, Aurora -[4,05], {00341}, Odyssey -[4,06], {00742}, Zenith -[4,07], {00800}, Echo -[4,08], {00933}, Singularity -[4,09], {00127}, Aero -[4,10], {00129}, Beacon -[4,11], {00231}, Twilight -[5,01], {00807}, Vertex -[5,02], {00948}, Quantum -[5,03], {00714}, Spectrum -[5,04], {00900}, Phoenix -[5,05], {00353}, Inferno -[5,06], {00493}, Comet -[5,07], {00712}, Meteor -[5,08], {00626}, Velocity -[5,09], {00293}, Circuit -[5,10], {00582}, Beacon -[5,11], {00836}, Zenith -[6,01], {00704}, Neptune -[6,02], {00000}, UNUSED -[6,03], {00283}, Apollo -[6,04], {00000}, UNUSED -[6,05], {00461}, Vertex -[6,06], {00596}, Drift -[6,07], {00000}, UNUSED -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00909}, Velocity -[7,01], {00644}, Lunar -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00503}, Twilight -[7,06], {00714}, Spectrum -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00782}, Solstice -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00431}, Cyclone -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00324}, Singularity +[01,01], {00377}, Circuit +[01,02], {00255}, Neptune +[01,03], {00590}, Spectrum +[01,04], {00341}, Beacon +[01,05], {00228}, Aero +[01,06], {00949}, Phoenix +[01,07], {00968}, Zephyr +[01,08], {00855}, Velocity +[01,09], {00200}, Cascade +[01,10], {00556}, Horizon +[01,11], {00355}, Spectrum +[02,01], {00963}, Twilight +[02,02], {00823}, Meteor +[02,03], {00651}, Glider +[02,04], {00389}, Mirage +[02,05], {00465}, Orion +[02,06], {00496}, Velocity +[02,07], {00836}, Spectrum +[02,08], {00593}, Echo +[02,09], {00316}, Aero +[02,10], {00245}, Blaze +[02,11], {00697}, Eclipse +[03,01], {00982}, Horizon +[03,02], {00152}, Twilight +[03,03], {00806}, Tesla +[03,04], {00742}, Horizon +[03,05], {00106}, Orion +[03,06], {00741}, Singularity +[03,07], {00676}, Gravity +[03,08], {00955}, Spectrum +[03,09], {00284}, Aero +[03,10], {00992}, Odyssey +[03,11], {00274}, Spectrum +[04,01], {00788}, Cascade +[04,02], {00410}, Matrix +[04,03], {00920}, Nova +[04,04], {00197}, Aurora +[04,05], {00341}, Odyssey +[04,06], {00742}, Zenith +[04,07], {00800}, Echo +[04,08], {00933}, Singularity +[04,09], {00127}, Aero +[04,10], {00129}, Beacon +[04,11], {00231}, Twilight +[05,01], {00807}, Vertex +[05,02], {00948}, Quantum +[05,03], {00714}, Spectrum +[05,04], {00900}, Phoenix +[05,05], {00353}, Inferno +[05,06], {00493}, Comet +[05,07], {00712}, Meteor +[05,08], {00626}, Velocity +[05,09], {00293}, Circuit +[05,10], {00582}, Beacon +[05,11], {00836}, Zenith +[06,01], {00704}, Neptune +[06,02], {00000}, UNUSED +[06,03], {00283}, Apollo +[06,04], {00000}, UNUSED +[06,05], {00461}, Vertex +[06,06], {00596}, Drift +[06,07], {00000}, UNUSED +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00909}, Velocity +[07,01], {00644}, Lunar +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00503}, Twilight +[07,06], {00714}, Spectrum +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00782}, Solstice +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00431}, Cyclone +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00324}, Singularity diff --git a/Data/manifests/67Containers.txt b/Data/manifests/67Containers.txt index 03073e4..586c25e 100644 --- a/Data/manifests/67Containers.txt +++ b/Data/manifests/67Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00868}, Nimbus -[1,02], {00137}, Drift -[1,03], {00537}, Vertex -[1,04], {00893}, Quantum -[1,05], {00999}, Spectrum -[1,06], {00279}, Eclipse -[1,07], {00474}, Comet -[1,08], {00411}, Nimbus -[1,09], {00914}, Glacier -[1,10], {00448}, Ember -[1,11], {00681}, Cyclone -[2,01], {00564}, Echo -[2,02], {00273}, Tectonic -[2,03], {00446}, Gravity -[2,04], {00727}, Cosmos -[2,05], {00664}, Atlas -[2,06], {00988}, Aero -[2,07], {00259}, Apollo -[2,08], {00851}, Dynamo -[2,09], {00338}, Matrix -[2,10], {00520}, Titan -[2,11], {00000}, UNUSED -[3,01], {00673}, Vortex -[3,02], {00184}, Crystal -[3,03], {00713}, Zephyr -[3,04], {00699}, Vortex -[3,05], {00187}, Orion -[3,06], {00146}, Velocity -[3,07], {00151}, Zenith -[3,08], {00578}, Spectrum -[3,09], {00802}, Glacier -[3,10], {00000}, UNUSED -[3,11], {00000}, UNUSED -[4,01], {00532}, Horizon -[4,02], {00687}, Inferno -[4,03], {00136}, Nova -[4,04], {00248}, Vertex -[4,05], {00377}, Radiance -[4,06], {00634}, Everest -[4,07], {00392}, Beacon -[4,08], {00701}, Vortex -[4,09], {00800}, Zephyr -[4,10], {00000}, UNUSED -[4,11], {00000}, UNUSED -[5,01], {00493}, Spectrum -[5,02], {00147}, Twilight -[5,03], {00112}, Eclipse -[5,04], {00828}, Twilight -[5,05], {00724}, Zephyr -[5,06], {00854}, Horizon -[5,07], {00904}, Spectrum -[5,08], {00148}, Infinity -[5,09], {00845}, Glider -[5,10], {00000}, UNUSED -[5,11], {00000}, UNUSED -[6,01], {00708}, Prism -[6,02], {00854}, Titan -[6,03], {00881}, Singularity -[6,04], {00000}, UNUSED -[6,05], {00124}, Twilight -[6,06], {00872}, Tectonic -[6,07], {00951}, Cosmos -[6,08], {00424}, Drift -[6,09], {00490}, Odyssey -[6,10], {00000}, UNUSED -[6,11], {00000}, UNUSED -[7,01], {00493}, Shadow -[7,02], {00475}, Vertex -[7,03], {00611}, Vortex -[7,04], {00000}, UNUSED -[7,05], {00378}, Zenith -[7,06], {00787}, Glacier -[7,07], {00527}, Drift -[7,08], {00894}, Nimbus -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00000}, UNUSED -[8,01], {00430}, Velocity -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00159}, Tectonic -[8,06], {00414}, Cyclone -[8,07], {00000}, UNUSED -[8,08], {00548}, Zenith -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00868}, Nimbus +[01,02], {00137}, Drift +[01,03], {00537}, Vertex +[01,04], {00893}, Quantum +[01,05], {00999}, Spectrum +[01,06], {00279}, Eclipse +[01,07], {00474}, Comet +[01,08], {00411}, Nimbus +[01,09], {00914}, Glacier +[01,10], {00448}, Ember +[01,11], {00681}, Cyclone +[02,01], {00564}, Echo +[02,02], {00273}, Tectonic +[02,03], {00446}, Gravity +[02,04], {00727}, Cosmos +[02,05], {00664}, Atlas +[02,06], {00988}, Aero +[02,07], {00259}, Apollo +[02,08], {00851}, Dynamo +[02,09], {00338}, Matrix +[02,10], {00520}, Titan +[02,11], {00000}, UNUSED +[03,01], {00673}, Vortex +[03,02], {00184}, Crystal +[03,03], {00713}, Zephyr +[03,04], {00699}, Vortex +[03,05], {00187}, Orion +[03,06], {00146}, Velocity +[03,07], {00151}, Zenith +[03,08], {00578}, Spectrum +[03,09], {00802}, Glacier +[03,10], {00000}, UNUSED +[03,11], {00000}, UNUSED +[04,01], {00532}, Horizon +[04,02], {00687}, Inferno +[04,03], {00136}, Nova +[04,04], {00248}, Vertex +[04,05], {00377}, Radiance +[04,06], {00634}, Everest +[04,07], {00392}, Beacon +[04,08], {00701}, Vortex +[04,09], {00800}, Zephyr +[04,10], {00000}, UNUSED +[04,11], {00000}, UNUSED +[05,01], {00493}, Spectrum +[05,02], {00147}, Twilight +[05,03], {00112}, Eclipse +[05,04], {00828}, Twilight +[05,05], {00724}, Zephyr +[05,06], {00854}, Horizon +[05,07], {00904}, Spectrum +[05,08], {00148}, Infinity +[05,09], {00845}, Glider +[05,10], {00000}, UNUSED +[05,11], {00000}, UNUSED +[06,01], {00708}, Prism +[06,02], {00854}, Titan +[06,03], {00881}, Singularity +[06,04], {00000}, UNUSED +[06,05], {00124}, Twilight +[06,06], {00872}, Tectonic +[06,07], {00951}, Cosmos +[06,08], {00424}, Drift +[06,09], {00490}, Odyssey +[06,10], {00000}, UNUSED +[06,11], {00000}, UNUSED +[07,01], {00493}, Shadow +[07,02], {00475}, Vertex +[07,03], {00611}, Vortex +[07,04], {00000}, UNUSED +[07,05], {00378}, Zenith +[07,06], {00787}, Glacier +[07,07], {00527}, Drift +[07,08], {00894}, Nimbus +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00000}, UNUSED +[08,01], {00430}, Velocity +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00159}, Tectonic +[08,06], {00414}, Cyclone +[08,07], {00000}, UNUSED +[08,08], {00548}, Zenith +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/68Containers.txt b/Data/manifests/68Containers.txt index 3898ce0..692761b 100644 --- a/Data/manifests/68Containers.txt +++ b/Data/manifests/68Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00472}, Circuit -[1,02], {00854}, Shard -[1,03], {00706}, Glacier -[1,04], {00641}, Nexus -[1,05], {00455}, Zephyr -[1,06], {00525}, Orion -[1,07], {00698}, Circuit -[1,08], {00869}, Eclipse -[1,09], {00970}, Horizon -[1,10], {00360}, Sol -[1,11], {00514}, Mirage -[2,01], {00455}, Comet -[2,02], {00234}, Forge -[2,03], {00200}, Axis -[2,04], {00386}, Zenith -[2,05], {00716}, Apollo -[2,06], {00599}, Orion -[2,07], {00440}, Zenith -[2,08], {00971}, Cyclone -[2,09], {00322}, Spectrum -[2,10], {00288}, Eclipse -[2,11], {00000}, UNUSED -[3,01], {00543}, Tectonic -[3,02], {00554}, Shadow -[3,03], {00934}, Solstice -[3,04], {00253}, Tectonic -[3,05], {00958}, Vortex -[3,06], {00619}, Infinity -[3,07], {00524}, Shadow -[3,08], {00688}, Nexus -[3,09], {00471}, Nova -[3,10], {00108}, Lunar -[3,11], {00000}, UNUSED -[4,01], {00309}, Beacon -[4,02], {00683}, Nimbus -[4,03], {00194}, Glacier -[4,04], {00425}, Spectrum -[4,05], {00604}, Aero -[4,06], {00591}, Twilight -[4,07], {00216}, Blaze -[4,08], {00157}, Horizon -[4,09], {00515}, Prism -[4,10], {00437}, Solstice -[4,11], {00000}, UNUSED -[5,01], {00501}, Aurora -[5,02], {00566}, Tectonic -[5,03], {00685}, Singularity -[5,04], {00481}, Solstice -[5,05], {00461}, Mirage -[5,06], {00689}, Stardust -[5,07], {00245}, Cascade -[5,08], {00552}, Eclipse -[5,09], {00847}, Prism -[5,10], {00638}, Shadow -[5,11], {00000}, UNUSED -[6,01], {00407}, Phoenix -[6,02], {00000}, UNUSED -[6,03], {00630}, Crystal -[6,04], {00375}, Spectrum -[6,05], {00000}, UNUSED -[6,06], {00690}, Beacon -[6,07], {00848}, Zephyr -[6,08], {00752}, Dynamo -[6,09], {00144}, Lunar -[6,10], {00782}, Orion -[6,11], {00000}, UNUSED -[7,01], {00172}, Zenith -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00000}, UNUSED -[7,06], {00288}, Quantum -[7,07], {00000}, UNUSED -[7,08], {00880}, Aero -[7,09], {00766}, Zephyr -[7,10], {00144}, Zenith -[7,11], {00000}, UNUSED -[8,01], {00737}, Forge -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00000}, UNUSED -[8,06], {00248}, Neptune -[8,07], {00000}, UNUSED -[8,08], {00370}, Echo -[8,09], {00000}, UNUSED -[8,10], {00768}, Velocity -[8,11], {00000}, UNUSED +[01,01], {00472}, Circuit +[01,02], {00854}, Shard +[01,03], {00706}, Glacier +[01,04], {00641}, Nexus +[01,05], {00455}, Zephyr +[01,06], {00525}, Orion +[01,07], {00698}, Circuit +[01,08], {00869}, Eclipse +[01,09], {00970}, Horizon +[01,10], {00360}, Sol +[01,11], {00514}, Mirage +[02,01], {00455}, Comet +[02,02], {00234}, Forge +[02,03], {00200}, Axis +[02,04], {00386}, Zenith +[02,05], {00716}, Apollo +[02,06], {00599}, Orion +[02,07], {00440}, Zenith +[02,08], {00971}, Cyclone +[02,09], {00322}, Spectrum +[02,10], {00288}, Eclipse +[02,11], {00000}, UNUSED +[03,01], {00543}, Tectonic +[03,02], {00554}, Shadow +[03,03], {00934}, Solstice +[03,04], {00253}, Tectonic +[03,05], {00958}, Vortex +[03,06], {00619}, Infinity +[03,07], {00524}, Shadow +[03,08], {00688}, Nexus +[03,09], {00471}, Nova +[03,10], {00108}, Lunar +[03,11], {00000}, UNUSED +[04,01], {00309}, Beacon +[04,02], {00683}, Nimbus +[04,03], {00194}, Glacier +[04,04], {00425}, Spectrum +[04,05], {00604}, Aero +[04,06], {00591}, Twilight +[04,07], {00216}, Blaze +[04,08], {00157}, Horizon +[04,09], {00515}, Prism +[04,10], {00437}, Solstice +[04,11], {00000}, UNUSED +[05,01], {00501}, Aurora +[05,02], {00566}, Tectonic +[05,03], {00685}, Singularity +[05,04], {00481}, Solstice +[05,05], {00461}, Mirage +[05,06], {00689}, Stardust +[05,07], {00245}, Cascade +[05,08], {00552}, Eclipse +[05,09], {00847}, Prism +[05,10], {00638}, Shadow +[05,11], {00000}, UNUSED +[06,01], {00407}, Phoenix +[06,02], {00000}, UNUSED +[06,03], {00630}, Crystal +[06,04], {00375}, Spectrum +[06,05], {00000}, UNUSED +[06,06], {00690}, Beacon +[06,07], {00848}, Zephyr +[06,08], {00752}, Dynamo +[06,09], {00144}, Lunar +[06,10], {00782}, Orion +[06,11], {00000}, UNUSED +[07,01], {00172}, Zenith +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00000}, UNUSED +[07,06], {00288}, Quantum +[07,07], {00000}, UNUSED +[07,08], {00880}, Aero +[07,09], {00766}, Zephyr +[07,10], {00144}, Zenith +[07,11], {00000}, UNUSED +[08,01], {00737}, Forge +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00000}, UNUSED +[08,06], {00248}, Neptune +[08,07], {00000}, UNUSED +[08,08], {00370}, Echo +[08,09], {00000}, UNUSED +[08,10], {00768}, Velocity +[08,11], {00000}, UNUSED diff --git a/Data/manifests/69Containers.txt b/Data/manifests/69Containers.txt index 37f5560..ffb4c82 100644 --- a/Data/manifests/69Containers.txt +++ b/Data/manifests/69Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00838}, Odyssey -[1,02], {00502}, Vertex -[1,03], {00443}, Matrix -[1,04], {00655}, Spectrum -[1,05], {00341}, Meteor -[1,06], {00880}, Solstice -[1,07], {00113}, Spectrum -[1,08], {00319}, Vortex -[1,09], {00809}, Arcadia -[1,10], {00301}, Aero -[1,11], {00218}, Cosmos -[2,01], {00707}, Blaze -[2,02], {00000}, UNUSED -[2,03], {00727}, Blaze -[2,04], {00356}, Halo -[2,05], {00575}, Blaze -[2,06], {00236}, Beacon -[2,07], {00708}, Cyclone -[2,08], {00938}, Gravity -[2,09], {00715}, Comet -[2,10], {00999}, Nexus -[2,11], {00389}, Tectonic -[3,01], {00333}, Axis -[3,02], {00000}, UNUSED -[3,03], {00217}, Halo -[3,04], {00148}, Matrix -[3,05], {00236}, Forge -[3,06], {00581}, Halo -[3,07], {00846}, Glider -[3,08], {00832}, Radiance -[3,09], {00131}, Tesla -[3,10], {00444}, Spectrum -[3,11], {00550}, Zenith -[4,01], {00413}, Twilight -[4,02], {00000}, UNUSED -[4,03], {00638}, Crystal -[4,04], {00326}, Eclipse -[4,05], {00568}, Drift -[4,06], {00290}, Zenith -[4,07], {00247}, Ember -[4,08], {00214}, Zephyr -[4,09], {00409}, Lunar -[4,10], {00663}, Stardust -[4,11], {00638}, Nova -[5,01], {00365}, Everest -[5,02], {00000}, UNUSED -[5,03], {00230}, Echo -[5,04], {00432}, Velocity -[5,05], {00181}, Quantum -[5,06], {00184}, Circuit -[5,07], {00972}, Odyssey -[5,08], {00572}, Vertex -[5,09], {00460}, Horizon -[5,10], {00630}, Spectrum -[5,11], {00000}, UNUSED -[6,01], {00402}, Cyclone -[6,02], {00000}, UNUSED -[6,03], {00657}, Zenith -[6,04], {00329}, Zenith -[6,05], {00342}, Lunar -[6,06], {00993}, Cosmos -[6,07], {00849}, Glider -[6,08], {00538}, Inferno -[6,09], {00491}, Echo -[6,10], {00818}, Lunar -[6,11], {00000}, UNUSED -[7,01], {00809}, Velocity -[7,02], {00000}, UNUSED -[7,03], {00999}, Dynamo -[7,04], {00794}, Vertex -[7,05], {00660}, Singularity -[7,06], {00000}, UNUSED -[7,07], {00976}, Dynamo -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00107}, Horizon -[7,11], {00000}, UNUSED -[8,01], {00351}, Odyssey -[8,02], {00000}, UNUSED -[8,03], {00133}, Everest -[8,04], {00371}, Nova -[8,05], {00000}, UNUSED -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00525}, Atlas -[8,11], {00000}, UNUSED +[01,01], {00838}, Odyssey +[01,02], {00502}, Vertex +[01,03], {00443}, Matrix +[01,04], {00655}, Spectrum +[01,05], {00341}, Meteor +[01,06], {00880}, Solstice +[01,07], {00113}, Spectrum +[01,08], {00319}, Vortex +[01,09], {00809}, Arcadia +[01,10], {00301}, Aero +[01,11], {00218}, Cosmos +[02,01], {00707}, Blaze +[02,02], {00000}, UNUSED +[02,03], {00727}, Blaze +[02,04], {00356}, Halo +[02,05], {00575}, Blaze +[02,06], {00236}, Beacon +[02,07], {00708}, Cyclone +[02,08], {00938}, Gravity +[02,09], {00715}, Comet +[02,10], {00999}, Nexus +[02,11], {00389}, Tectonic +[03,01], {00333}, Axis +[03,02], {00000}, UNUSED +[03,03], {00217}, Halo +[03,04], {00148}, Matrix +[03,05], {00236}, Forge +[03,06], {00581}, Halo +[03,07], {00846}, Glider +[03,08], {00832}, Radiance +[03,09], {00131}, Tesla +[03,10], {00444}, Spectrum +[03,11], {00550}, Zenith +[04,01], {00413}, Twilight +[04,02], {00000}, UNUSED +[04,03], {00638}, Crystal +[04,04], {00326}, Eclipse +[04,05], {00568}, Drift +[04,06], {00290}, Zenith +[04,07], {00247}, Ember +[04,08], {00214}, Zephyr +[04,09], {00409}, Lunar +[04,10], {00663}, Stardust +[04,11], {00638}, Nova +[05,01], {00365}, Everest +[05,02], {00000}, UNUSED +[05,03], {00230}, Echo +[05,04], {00432}, Velocity +[05,05], {00181}, Quantum +[05,06], {00184}, Circuit +[05,07], {00972}, Odyssey +[05,08], {00572}, Vertex +[05,09], {00460}, Horizon +[05,10], {00630}, Spectrum +[05,11], {00000}, UNUSED +[06,01], {00402}, Cyclone +[06,02], {00000}, UNUSED +[06,03], {00657}, Zenith +[06,04], {00329}, Zenith +[06,05], {00342}, Lunar +[06,06], {00993}, Cosmos +[06,07], {00849}, Glider +[06,08], {00538}, Inferno +[06,09], {00491}, Echo +[06,10], {00818}, Lunar +[06,11], {00000}, UNUSED +[07,01], {00809}, Velocity +[07,02], {00000}, UNUSED +[07,03], {00999}, Dynamo +[07,04], {00794}, Vertex +[07,05], {00660}, Singularity +[07,06], {00000}, UNUSED +[07,07], {00976}, Dynamo +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00107}, Horizon +[07,11], {00000}, UNUSED +[08,01], {00351}, Odyssey +[08,02], {00000}, UNUSED +[08,03], {00133}, Everest +[08,04], {00371}, Nova +[08,05], {00000}, UNUSED +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00525}, Atlas +[08,11], {00000}, UNUSED diff --git a/Data/manifests/70Containers.txt b/Data/manifests/70Containers.txt index 10b7e02..816e230 100644 --- a/Data/manifests/70Containers.txt +++ b/Data/manifests/70Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00447}, Matrix -[1,02], {00791}, Radiance -[1,03], {00547}, Eclipse -[1,04], {00415}, Voyager -[1,05], {00670}, Gravity -[1,06], {00857}, Zenith -[1,07], {00871}, Radiance -[1,08], {00986}, Zephyr -[1,09], {00708}, Matrix -[1,10], {00323}, Halo -[1,11], {00397}, Forge -[2,01], {00841}, Sol -[2,02], {00888}, Blaze -[2,03], {00413}, Echo -[2,04], {00108}, Circuit -[2,05], {00868}, Lunar -[2,06], {00838}, Tesla -[2,07], {00492}, Titan -[2,08], {00594}, Inferno -[2,09], {00144}, Glider -[2,10], {00588}, Zephyr -[2,11], {00907}, Ember -[3,01], {00207}, Arcadia -[3,02], {00470}, Singularity -[3,03], {00375}, Stardust -[3,04], {00473}, Echo -[3,05], {00787}, Shard -[3,06], {00756}, Cosmos -[3,07], {00519}, Matrix -[3,08], {00460}, Spectrum -[3,09], {00358}, Eclipse -[3,10], {00608}, Quantum -[3,11], {00741}, Spectrum -[4,01], {00179}, Apollo -[4,02], {00217}, Orion -[4,03], {00802}, Titan -[4,04], {00831}, Twilight -[4,05], {00472}, Dynamo -[4,06], {00841}, Nexus -[4,07], {00191}, Zenith -[4,08], {00995}, Tectonic -[4,09], {00229}, Aurora -[4,10], {00245}, Velocity -[4,11], {00340}, Twilight -[5,01], {00523}, Gravity -[5,02], {00000}, UNUSED -[5,03], {00169}, Everest -[5,04], {00858}, Echo -[5,05], {00854}, Quantum -[5,06], {00381}, Radiance -[5,07], {00000}, UNUSED -[5,08], {00946}, Horizon -[5,09], {00307}, Radiance -[5,10], {00710}, Forge -[5,11], {00978}, Prism -[6,01], {00577}, Phoenix -[6,02], {00000}, UNUSED -[6,03], {00201}, Apollo -[6,04], {00879}, Axis -[6,05], {00235}, Quantum -[6,06], {00713}, Vertex -[6,07], {00000}, UNUSED -[6,08], {00577}, Drift -[6,09], {00000}, UNUSED -[6,10], {00000}, UNUSED -[6,11], {00169}, Glacier -[7,01], {00564}, Tesla -[7,02], {00000}, UNUSED -[7,03], {00518}, Forge -[7,04], {00000}, UNUSED -[7,05], {00535}, Aurora -[7,06], {00931}, Borealis -[7,07], {00000}, UNUSED -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00000}, UNUSED -[7,11], {00520}, Polaris -[8,01], {00876}, Glider -[8,02], {00000}, UNUSED -[8,03], {00645}, Titan -[8,04], {00000}, UNUSED -[8,05], {00502}, Solstice -[8,06], {00379}, Dynamo -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00125}, Horizon +[01,01], {00447}, Matrix +[01,02], {00791}, Radiance +[01,03], {00547}, Eclipse +[01,04], {00415}, Voyager +[01,05], {00670}, Gravity +[01,06], {00857}, Zenith +[01,07], {00871}, Radiance +[01,08], {00986}, Zephyr +[01,09], {00708}, Matrix +[01,10], {00323}, Halo +[01,11], {00397}, Forge +[02,01], {00841}, Sol +[02,02], {00888}, Blaze +[02,03], {00413}, Echo +[02,04], {00108}, Circuit +[02,05], {00868}, Lunar +[02,06], {00838}, Tesla +[02,07], {00492}, Titan +[02,08], {00594}, Inferno +[02,09], {00144}, Glider +[02,10], {00588}, Zephyr +[02,11], {00907}, Ember +[03,01], {00207}, Arcadia +[03,02], {00470}, Singularity +[03,03], {00375}, Stardust +[03,04], {00473}, Echo +[03,05], {00787}, Shard +[03,06], {00756}, Cosmos +[03,07], {00519}, Matrix +[03,08], {00460}, Spectrum +[03,09], {00358}, Eclipse +[03,10], {00608}, Quantum +[03,11], {00741}, Spectrum +[04,01], {00179}, Apollo +[04,02], {00217}, Orion +[04,03], {00802}, Titan +[04,04], {00831}, Twilight +[04,05], {00472}, Dynamo +[04,06], {00841}, Nexus +[04,07], {00191}, Zenith +[04,08], {00995}, Tectonic +[04,09], {00229}, Aurora +[04,10], {00245}, Velocity +[04,11], {00340}, Twilight +[05,01], {00523}, Gravity +[05,02], {00000}, UNUSED +[05,03], {00169}, Everest +[05,04], {00858}, Echo +[05,05], {00854}, Quantum +[05,06], {00381}, Radiance +[05,07], {00000}, UNUSED +[05,08], {00946}, Horizon +[05,09], {00307}, Radiance +[05,10], {00710}, Forge +[05,11], {00978}, Prism +[06,01], {00577}, Phoenix +[06,02], {00000}, UNUSED +[06,03], {00201}, Apollo +[06,04], {00879}, Axis +[06,05], {00235}, Quantum +[06,06], {00713}, Vertex +[06,07], {00000}, UNUSED +[06,08], {00577}, Drift +[06,09], {00000}, UNUSED +[06,10], {00000}, UNUSED +[06,11], {00169}, Glacier +[07,01], {00564}, Tesla +[07,02], {00000}, UNUSED +[07,03], {00518}, Forge +[07,04], {00000}, UNUSED +[07,05], {00535}, Aurora +[07,06], {00931}, Borealis +[07,07], {00000}, UNUSED +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00000}, UNUSED +[07,11], {00520}, Polaris +[08,01], {00876}, Glider +[08,02], {00000}, UNUSED +[08,03], {00645}, Titan +[08,04], {00000}, UNUSED +[08,05], {00502}, Solstice +[08,06], {00379}, Dynamo +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00125}, Horizon diff --git a/Data/manifests/71Containers.txt b/Data/manifests/71Containers.txt index ba6f8cf..b120ad8 100644 --- a/Data/manifests/71Containers.txt +++ b/Data/manifests/71Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00804}, Everest -[1,02], {00100}, Singularity -[1,03], {00669}, Halo -[1,04], {00391}, Halo -[1,05], {00888}, Phoenix -[1,06], {00527}, Spectrum -[1,07], {00989}, Apollo -[1,08], {00996}, Solstice -[1,09], {00799}, Forge -[1,10], {00578}, Glider -[1,11], {00703}, Zenith -[2,01], {00726}, Drift -[2,02], {00449}, Atlas -[2,03], {00197}, Cosmos -[2,04], {00203}, Twilight -[2,05], {00789}, Horizon -[2,06], {00222}, Dynamo -[2,07], {00599}, Shard -[2,08], {00764}, Tectonic -[2,09], {00813}, Polaris -[2,10], {00315}, Prism -[2,11], {00502}, Halo -[3,01], {00478}, Lunar -[3,02], {00616}, Atlas -[3,03], {00329}, Spectrum -[3,04], {00845}, Circuit -[3,05], {00735}, Drift -[3,06], {00873}, Drift -[3,07], {00774}, Tectonic -[3,08], {00373}, Zenith -[3,09], {00228}, Glacier -[3,10], {00733}, Halo -[3,11], {00000}, UNUSED -[4,01], {00291}, Twilight -[4,02], {00630}, Beacon -[4,03], {00997}, Vertex -[4,04], {00844}, Shadow -[4,05], {00119}, Spectrum -[4,06], {00451}, Borealis -[4,07], {00310}, Axis -[4,08], {00726}, Aurora -[4,09], {00294}, Arcadia -[4,10], {00354}, Everest -[4,11], {00000}, UNUSED -[5,01], {00592}, Beacon -[5,02], {00317}, Nexus -[5,03], {00208}, Singularity -[5,04], {00750}, Shadow -[5,05], {00207}, Nexus -[5,06], {00663}, Drift -[5,07], {00996}, Lunar -[5,08], {00191}, Horizon -[5,09], {00803}, Shadow -[5,10], {00588}, Singularity -[5,11], {00000}, UNUSED -[6,01], {00555}, Zenith -[6,02], {00781}, Blaze -[6,03], {00211}, Zenith -[6,04], {00699}, Aero -[6,05], {00211}, Cosmos -[6,06], {00675}, Prism -[6,07], {00632}, Dynamo -[6,08], {00000}, UNUSED -[6,09], {00000}, UNUSED -[6,10], {00288}, Prism -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00917}, Solstice -[7,03], {00946}, Twilight -[7,04], {00232}, Meteor -[7,05], {00875}, Eclipse -[7,06], {00000}, UNUSED -[7,07], {00925}, Cosmos -[7,08], {00000}, UNUSED -[7,09], {00000}, UNUSED -[7,10], {00642}, Cosmos -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00671}, Aurora -[8,03], {00000}, UNUSED -[8,04], {00378}, Spectrum -[8,05], {00973}, Eclipse -[8,06], {00000}, UNUSED -[8,07], {00547}, Ember -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00369}, Meteor -[8,11], {00000}, UNUSED +[01,01], {00804}, Everest +[01,02], {00100}, Singularity +[01,03], {00669}, Halo +[01,04], {00391}, Halo +[01,05], {00888}, Phoenix +[01,06], {00527}, Spectrum +[01,07], {00989}, Apollo +[01,08], {00996}, Solstice +[01,09], {00799}, Forge +[01,10], {00578}, Glider +[01,11], {00703}, Zenith +[02,01], {00726}, Drift +[02,02], {00449}, Atlas +[02,03], {00197}, Cosmos +[02,04], {00203}, Twilight +[02,05], {00789}, Horizon +[02,06], {00222}, Dynamo +[02,07], {00599}, Shard +[02,08], {00764}, Tectonic +[02,09], {00813}, Polaris +[02,10], {00315}, Prism +[02,11], {00502}, Halo +[03,01], {00478}, Lunar +[03,02], {00616}, Atlas +[03,03], {00329}, Spectrum +[03,04], {00845}, Circuit +[03,05], {00735}, Drift +[03,06], {00873}, Drift +[03,07], {00774}, Tectonic +[03,08], {00373}, Zenith +[03,09], {00228}, Glacier +[03,10], {00733}, Halo +[03,11], {00000}, UNUSED +[04,01], {00291}, Twilight +[04,02], {00630}, Beacon +[04,03], {00997}, Vertex +[04,04], {00844}, Shadow +[04,05], {00119}, Spectrum +[04,06], {00451}, Borealis +[04,07], {00310}, Axis +[04,08], {00726}, Aurora +[04,09], {00294}, Arcadia +[04,10], {00354}, Everest +[04,11], {00000}, UNUSED +[05,01], {00592}, Beacon +[05,02], {00317}, Nexus +[05,03], {00208}, Singularity +[05,04], {00750}, Shadow +[05,05], {00207}, Nexus +[05,06], {00663}, Drift +[05,07], {00996}, Lunar +[05,08], {00191}, Horizon +[05,09], {00803}, Shadow +[05,10], {00588}, Singularity +[05,11], {00000}, UNUSED +[06,01], {00555}, Zenith +[06,02], {00781}, Blaze +[06,03], {00211}, Zenith +[06,04], {00699}, Aero +[06,05], {00211}, Cosmos +[06,06], {00675}, Prism +[06,07], {00632}, Dynamo +[06,08], {00000}, UNUSED +[06,09], {00000}, UNUSED +[06,10], {00288}, Prism +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00917}, Solstice +[07,03], {00946}, Twilight +[07,04], {00232}, Meteor +[07,05], {00875}, Eclipse +[07,06], {00000}, UNUSED +[07,07], {00925}, Cosmos +[07,08], {00000}, UNUSED +[07,09], {00000}, UNUSED +[07,10], {00642}, Cosmos +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00671}, Aurora +[08,03], {00000}, UNUSED +[08,04], {00378}, Spectrum +[08,05], {00973}, Eclipse +[08,06], {00000}, UNUSED +[08,07], {00547}, Ember +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00369}, Meteor +[08,11], {00000}, UNUSED diff --git a/Data/manifests/72Containers.txt b/Data/manifests/72Containers.txt index 54ca3ab..ad09b3a 100644 --- a/Data/manifests/72Containers.txt +++ b/Data/manifests/72Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00981}, Odyssey -[1,02], {00639}, Comet -[1,03], {00643}, Forge -[1,04], {00568}, Vertex -[1,05], {00101}, Orion -[1,06], {00188}, Everest -[1,07], {00505}, Prism -[1,08], {00352}, Crystal -[1,09], {00796}, Glider -[1,10], {00503}, Sol -[1,11], {00683}, Nova -[2,01], {00874}, Horizon -[2,02], {00758}, Atlas -[2,03], {00870}, Aero -[2,04], {00580}, Zenith -[2,05], {00618}, Cyclone -[2,06], {00549}, Ember -[2,07], {00869}, Matrix -[2,08], {00778}, Horizon -[2,09], {00355}, Tectonic -[2,10], {00485}, Zenith -[2,11], {00371}, Odyssey -[3,01], {00797}, Matrix -[3,02], {00268}, Voyager -[3,03], {00566}, Shadow -[3,04], {00191}, Solstice -[3,05], {00558}, Shard -[3,06], {00243}, Eclipse -[3,07], {00544}, Velocity -[3,08], {00000}, UNUSED -[3,09], {00654}, Twilight -[3,10], {00607}, Spectrum -[3,11], {00309}, Orion -[4,01], {00679}, Infinity -[4,02], {00000}, UNUSED -[4,03], {00323}, Odyssey -[4,04], {00867}, Meteor -[4,05], {00775}, Prism -[4,06], {00845}, Arcadia -[4,07], {00253}, Spectrum -[4,08], {00000}, UNUSED -[4,09], {00324}, Aero -[4,10], {00761}, Radiance -[4,11], {00554}, Gravity -[5,01], {00548}, Voyager -[5,02], {00000}, UNUSED -[5,03], {00607}, Odyssey -[5,04], {00431}, Spectrum -[5,05], {00382}, Tesla -[5,06], {00213}, Forge -[5,07], {00435}, Atlas -[5,08], {00000}, UNUSED -[5,09], {00657}, Voyager -[5,10], {00533}, Dynamo -[5,11], {00460}, Everest -[6,01], {00278}, Zephyr -[6,02], {00000}, UNUSED -[6,03], {00921}, Axis -[6,04], {00000}, UNUSED -[6,05], {00471}, Tectonic -[6,06], {00303}, Ember -[6,07], {00930}, Neptune -[6,08], {00000}, UNUSED -[6,09], {00533}, Prism -[6,10], {00200}, Spectrum -[6,11], {00479}, Spectrum -[7,01], {00825}, Inferno -[7,02], {00000}, UNUSED -[7,03], {00479}, Phoenix -[7,04], {00000}, UNUSED -[7,05], {00520}, Voyager -[7,06], {00454}, Cascade -[7,07], {00403}, Zenith -[7,08], {00000}, UNUSED -[7,09], {00558}, Phoenix -[7,10], {00137}, Solstice -[7,11], {00669}, Eclipse -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00542}, Nimbus -[8,06], {00906}, Echo -[8,07], {00339}, Shadow -[8,08], {00000}, UNUSED -[8,09], {00478}, Titan -[8,10], {00376}, Velocity -[8,11], {00515}, Aurora +[01,01], {00981}, Odyssey +[01,02], {00639}, Comet +[01,03], {00643}, Forge +[01,04], {00568}, Vertex +[01,05], {00101}, Orion +[01,06], {00188}, Everest +[01,07], {00505}, Prism +[01,08], {00352}, Crystal +[01,09], {00796}, Glider +[01,10], {00503}, Sol +[01,11], {00683}, Nova +[02,01], {00874}, Horizon +[02,02], {00758}, Atlas +[02,03], {00870}, Aero +[02,04], {00580}, Zenith +[02,05], {00618}, Cyclone +[02,06], {00549}, Ember +[02,07], {00869}, Matrix +[02,08], {00778}, Horizon +[02,09], {00355}, Tectonic +[02,10], {00485}, Zenith +[02,11], {00371}, Odyssey +[03,01], {00797}, Matrix +[03,02], {00268}, Voyager +[03,03], {00566}, Shadow +[03,04], {00191}, Solstice +[03,05], {00558}, Shard +[03,06], {00243}, Eclipse +[03,07], {00544}, Velocity +[03,08], {00000}, UNUSED +[03,09], {00654}, Twilight +[03,10], {00607}, Spectrum +[03,11], {00309}, Orion +[04,01], {00679}, Infinity +[04,02], {00000}, UNUSED +[04,03], {00323}, Odyssey +[04,04], {00867}, Meteor +[04,05], {00775}, Prism +[04,06], {00845}, Arcadia +[04,07], {00253}, Spectrum +[04,08], {00000}, UNUSED +[04,09], {00324}, Aero +[04,10], {00761}, Radiance +[04,11], {00554}, Gravity +[05,01], {00548}, Voyager +[05,02], {00000}, UNUSED +[05,03], {00607}, Odyssey +[05,04], {00431}, Spectrum +[05,05], {00382}, Tesla +[05,06], {00213}, Forge +[05,07], {00435}, Atlas +[05,08], {00000}, UNUSED +[05,09], {00657}, Voyager +[05,10], {00533}, Dynamo +[05,11], {00460}, Everest +[06,01], {00278}, Zephyr +[06,02], {00000}, UNUSED +[06,03], {00921}, Axis +[06,04], {00000}, UNUSED +[06,05], {00471}, Tectonic +[06,06], {00303}, Ember +[06,07], {00930}, Neptune +[06,08], {00000}, UNUSED +[06,09], {00533}, Prism +[06,10], {00200}, Spectrum +[06,11], {00479}, Spectrum +[07,01], {00825}, Inferno +[07,02], {00000}, UNUSED +[07,03], {00479}, Phoenix +[07,04], {00000}, UNUSED +[07,05], {00520}, Voyager +[07,06], {00454}, Cascade +[07,07], {00403}, Zenith +[07,08], {00000}, UNUSED +[07,09], {00558}, Phoenix +[07,10], {00137}, Solstice +[07,11], {00669}, Eclipse +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00542}, Nimbus +[08,06], {00906}, Echo +[08,07], {00339}, Shadow +[08,08], {00000}, UNUSED +[08,09], {00478}, Titan +[08,10], {00376}, Velocity +[08,11], {00515}, Aurora diff --git a/Data/manifests/73Containers.txt b/Data/manifests/73Containers.txt index 63522af..b053ac1 100644 --- a/Data/manifests/73Containers.txt +++ b/Data/manifests/73Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00848}, Titan -[1,02], {00876}, Zenith -[1,03], {00483}, Dynamo -[1,04], {00168}, Blaze -[1,05], {00298}, Circuit -[1,06], {00335}, Dynamo -[1,07], {00325}, Zenith -[1,08], {00629}, Zenith -[1,09], {00414}, Eclipse -[1,10], {00927}, Atlas -[1,11], {00544}, Forge -[2,01], {00397}, Ember -[2,02], {00628}, Lunar -[2,03], {00574}, Forge -[2,04], {00549}, Everest -[2,05], {00883}, Voyager -[2,06], {00222}, Echo -[2,07], {00366}, Drift -[2,08], {00629}, Titan -[2,09], {00317}, Voyager -[2,10], {00532}, Spectrum -[2,11], {00796}, Aero -[3,01], {00299}, Halo -[3,02], {00933}, Voyager -[3,03], {00457}, Sol -[3,04], {00933}, Crystal -[3,05], {00149}, Orion -[3,06], {00596}, Tesla -[3,07], {00395}, Halo -[3,08], {00282}, Velocity -[3,09], {00878}, Circuit -[3,10], {00974}, Blaze -[3,11], {00662}, Aero -[4,01], {01000}, Orion -[4,02], {00347}, Orion -[4,03], {00876}, Arcadia -[4,04], {00230}, Zephyr -[4,05], {00658}, Beacon -[4,06], {00607}, Inferno -[4,07], {00470}, Atlas -[4,08], {00674}, Borealis -[4,09], {00545}, Zenith -[4,10], {00215}, Forge -[4,11], {00243}, Crystal -[5,01], {00713}, Twilight -[5,02], {00771}, Lunar -[5,03], {00000}, UNUSED -[5,04], {00000}, UNUSED -[5,05], {00384}, Lunar -[5,06], {00916}, Singularity -[5,07], {00207}, Spectrum -[5,08], {00173}, Apollo -[5,09], {00817}, Borealis -[5,10], {00502}, Velocity -[5,11], {00868}, Halo -[6,01], {00000}, UNUSED -[6,02], {00313}, Forge -[6,03], {00000}, UNUSED -[6,04], {00000}, UNUSED -[6,05], {00892}, Aero -[6,06], {00000}, UNUSED -[6,07], {00266}, Singularity -[6,08], {00496}, Nexus -[6,09], {00370}, Dynamo -[6,10], {00693}, Dynamo -[6,11], {00428}, Tesla -[7,01], {00000}, UNUSED -[7,02], {00124}, Gravity -[7,03], {00000}, UNUSED -[7,04], {00000}, UNUSED -[7,05], {00128}, Eclipse -[7,06], {00000}, UNUSED -[7,07], {00986}, Dynamo -[7,08], {00638}, Echo -[7,09], {00377}, Echo -[7,10], {00622}, Tectonic -[7,11], {00759}, Eclipse -[8,01], {00000}, UNUSED -[8,02], {00232}, Glider -[8,03], {00000}, UNUSED -[8,04], {00000}, UNUSED -[8,05], {00993}, Aero -[8,06], {00000}, UNUSED -[8,07], {00879}, Orion -[8,08], {00000}, UNUSED -[8,09], {00605}, Prism -[8,10], {00767}, Solstice -[8,11], {00411}, Neptune +[01,01], {00848}, Titan +[01,02], {00876}, Zenith +[01,03], {00483}, Dynamo +[01,04], {00168}, Blaze +[01,05], {00298}, Circuit +[01,06], {00335}, Dynamo +[01,07], {00325}, Zenith +[01,08], {00629}, Zenith +[01,09], {00414}, Eclipse +[01,10], {00927}, Atlas +[01,11], {00544}, Forge +[02,01], {00397}, Ember +[02,02], {00628}, Lunar +[02,03], {00574}, Forge +[02,04], {00549}, Everest +[02,05], {00883}, Voyager +[02,06], {00222}, Echo +[02,07], {00366}, Drift +[02,08], {00629}, Titan +[02,09], {00317}, Voyager +[02,10], {00532}, Spectrum +[02,11], {00796}, Aero +[03,01], {00299}, Halo +[03,02], {00933}, Voyager +[03,03], {00457}, Sol +[03,04], {00933}, Crystal +[03,05], {00149}, Orion +[03,06], {00596}, Tesla +[03,07], {00395}, Halo +[03,08], {00282}, Velocity +[03,09], {00878}, Circuit +[03,10], {00974}, Blaze +[03,11], {00662}, Aero +[04,01], {01000}, Orion +[04,02], {00347}, Orion +[04,03], {00876}, Arcadia +[04,04], {00230}, Zephyr +[04,05], {00658}, Beacon +[04,06], {00607}, Inferno +[04,07], {00470}, Atlas +[04,08], {00674}, Borealis +[04,09], {00545}, Zenith +[04,10], {00215}, Forge +[04,11], {00243}, Crystal +[05,01], {00713}, Twilight +[05,02], {00771}, Lunar +[05,03], {00000}, UNUSED +[05,04], {00000}, UNUSED +[05,05], {00384}, Lunar +[05,06], {00916}, Singularity +[05,07], {00207}, Spectrum +[05,08], {00173}, Apollo +[05,09], {00817}, Borealis +[05,10], {00502}, Velocity +[05,11], {00868}, Halo +[06,01], {00000}, UNUSED +[06,02], {00313}, Forge +[06,03], {00000}, UNUSED +[06,04], {00000}, UNUSED +[06,05], {00892}, Aero +[06,06], {00000}, UNUSED +[06,07], {00266}, Singularity +[06,08], {00496}, Nexus +[06,09], {00370}, Dynamo +[06,10], {00693}, Dynamo +[06,11], {00428}, Tesla +[07,01], {00000}, UNUSED +[07,02], {00124}, Gravity +[07,03], {00000}, UNUSED +[07,04], {00000}, UNUSED +[07,05], {00128}, Eclipse +[07,06], {00000}, UNUSED +[07,07], {00986}, Dynamo +[07,08], {00638}, Echo +[07,09], {00377}, Echo +[07,10], {00622}, Tectonic +[07,11], {00759}, Eclipse +[08,01], {00000}, UNUSED +[08,02], {00232}, Glider +[08,03], {00000}, UNUSED +[08,04], {00000}, UNUSED +[08,05], {00993}, Aero +[08,06], {00000}, UNUSED +[08,07], {00879}, Orion +[08,08], {00000}, UNUSED +[08,09], {00605}, Prism +[08,10], {00767}, Solstice +[08,11], {00411}, Neptune diff --git a/Data/manifests/74Containers.txt b/Data/manifests/74Containers.txt index f2b42f0..7ec1905 100644 --- a/Data/manifests/74Containers.txt +++ b/Data/manifests/74Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00832}, Velocity -[1,02], {00956}, Titan -[1,03], {00523}, Horizon -[1,04], {00974}, Crystal -[1,05], {00668}, Forge -[1,06], {00922}, Meteor -[1,07], {00604}, Drift -[1,08], {00988}, Eclipse -[1,09], {00482}, Cascade -[1,10], {00632}, Cyclone -[1,11], {00844}, Drift -[2,01], {00884}, Twilight -[2,02], {00706}, Comet -[2,03], {00292}, Shard -[2,04], {00897}, Horizon -[2,05], {00246}, Circuit -[2,06], {00867}, Vertex -[2,07], {00210}, Dynamo -[2,08], {00303}, Zephyr -[2,09], {00665}, Cosmos -[2,10], {00166}, Velocity -[2,11], {00320}, Prism -[3,01], {00819}, Neptune -[3,02], {00897}, Lunar -[3,03], {00743}, Nova -[3,04], {00302}, Vortex -[3,05], {00799}, Nova -[3,06], {00663}, Shadow -[3,07], {00429}, Forge -[3,08], {00939}, Odyssey -[3,09], {00124}, Comet -[3,10], {00478}, Axis -[3,11], {00880}, Stardust -[4,01], {00662}, Solstice -[4,02], {00346}, Spectrum -[4,03], {00430}, Gravity -[4,04], {00850}, Glider -[4,05], {00231}, Glacier -[4,06], {00919}, Lunar -[4,07], {00491}, Quantum -[4,08], {00465}, Atlas -[4,09], {00938}, Atlas -[4,10], {00337}, Radiance -[4,11], {00000}, UNUSED -[5,01], {00791}, Nova -[5,02], {00329}, Zenith -[5,03], {00392}, Neptune -[5,04], {00306}, Aero -[5,05], {00687}, Forge -[5,06], {00998}, Odyssey -[5,07], {00431}, Everest -[5,08], {00000}, UNUSED -[5,09], {00316}, Vortex -[5,10], {00573}, Glacier -[5,11], {00000}, UNUSED -[6,01], {00000}, UNUSED -[6,02], {00896}, Echo -[6,03], {00124}, Nova -[6,04], {00201}, Vertex -[6,05], {00670}, Infinity -[6,06], {00242}, Comet -[6,07], {00453}, Nexus -[6,08], {00000}, UNUSED -[6,09], {00675}, Cyclone -[6,10], {00938}, Matrix -[6,11], {00000}, UNUSED -[7,01], {00000}, UNUSED -[7,02], {00535}, Forge -[7,03], {00955}, Circuit -[7,04], {00243}, Singularity -[7,05], {00177}, Spectrum -[7,06], {00304}, Drift -[7,07], {00690}, Infinity -[7,08], {00000}, UNUSED -[7,09], {00758}, Velocity -[7,10], {00542}, Twilight -[7,11], {00000}, UNUSED -[8,01], {00000}, UNUSED -[8,02], {00473}, Twilight -[8,03], {00343}, Cosmos -[8,04], {00807}, Echo -[8,05], {00000}, UNUSED -[8,06], {00812}, Spectrum -[8,07], {00773}, Spectrum -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00854}, Nexus -[8,11], {00000}, UNUSED +[01,01], {00832}, Velocity +[01,02], {00956}, Titan +[01,03], {00523}, Horizon +[01,04], {00974}, Crystal +[01,05], {00668}, Forge +[01,06], {00922}, Meteor +[01,07], {00604}, Drift +[01,08], {00988}, Eclipse +[01,09], {00482}, Cascade +[01,10], {00632}, Cyclone +[01,11], {00844}, Drift +[02,01], {00884}, Twilight +[02,02], {00706}, Comet +[02,03], {00292}, Shard +[02,04], {00897}, Horizon +[02,05], {00246}, Circuit +[02,06], {00867}, Vertex +[02,07], {00210}, Dynamo +[02,08], {00303}, Zephyr +[02,09], {00665}, Cosmos +[02,10], {00166}, Velocity +[02,11], {00320}, Prism +[03,01], {00819}, Neptune +[03,02], {00897}, Lunar +[03,03], {00743}, Nova +[03,04], {00302}, Vortex +[03,05], {00799}, Nova +[03,06], {00663}, Shadow +[03,07], {00429}, Forge +[03,08], {00939}, Odyssey +[03,09], {00124}, Comet +[03,10], {00478}, Axis +[03,11], {00880}, Stardust +[04,01], {00662}, Solstice +[04,02], {00346}, Spectrum +[04,03], {00430}, Gravity +[04,04], {00850}, Glider +[04,05], {00231}, Glacier +[04,06], {00919}, Lunar +[04,07], {00491}, Quantum +[04,08], {00465}, Atlas +[04,09], {00938}, Atlas +[04,10], {00337}, Radiance +[04,11], {00000}, UNUSED +[05,01], {00791}, Nova +[05,02], {00329}, Zenith +[05,03], {00392}, Neptune +[05,04], {00306}, Aero +[05,05], {00687}, Forge +[05,06], {00998}, Odyssey +[05,07], {00431}, Everest +[05,08], {00000}, UNUSED +[05,09], {00316}, Vortex +[05,10], {00573}, Glacier +[05,11], {00000}, UNUSED +[06,01], {00000}, UNUSED +[06,02], {00896}, Echo +[06,03], {00124}, Nova +[06,04], {00201}, Vertex +[06,05], {00670}, Infinity +[06,06], {00242}, Comet +[06,07], {00453}, Nexus +[06,08], {00000}, UNUSED +[06,09], {00675}, Cyclone +[06,10], {00938}, Matrix +[06,11], {00000}, UNUSED +[07,01], {00000}, UNUSED +[07,02], {00535}, Forge +[07,03], {00955}, Circuit +[07,04], {00243}, Singularity +[07,05], {00177}, Spectrum +[07,06], {00304}, Drift +[07,07], {00690}, Infinity +[07,08], {00000}, UNUSED +[07,09], {00758}, Velocity +[07,10], {00542}, Twilight +[07,11], {00000}, UNUSED +[08,01], {00000}, UNUSED +[08,02], {00473}, Twilight +[08,03], {00343}, Cosmos +[08,04], {00807}, Echo +[08,05], {00000}, UNUSED +[08,06], {00812}, Spectrum +[08,07], {00773}, Spectrum +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00854}, Nexus +[08,11], {00000}, UNUSED diff --git a/Data/manifests/75Containers.txt b/Data/manifests/75Containers.txt index 5963fde..7509fda 100644 --- a/Data/manifests/75Containers.txt +++ b/Data/manifests/75Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00213}, Echo -[1,02], {00966}, Inferno -[1,03], {00605}, Zenith -[1,04], {00110}, Spectrum -[1,05], {00102}, Mirage -[1,06], {00671}, Circuit -[1,07], {00249}, Twilight -[1,08], {00358}, Axis -[1,09], {00261}, Sol -[1,10], {00934}, Orion -[1,11], {00626}, Solstice -[2,01], {00505}, Voyager -[2,02], {00798}, Sol -[2,03], {00608}, Axis -[2,04], {00908}, Titan -[2,05], {00651}, Odyssey -[2,06], {00439}, Blaze -[2,07], {00807}, Polaris -[2,08], {00357}, Tesla -[2,09], {00288}, Meteor -[2,10], {00846}, Drift -[2,11], {00820}, Borealis -[3,01], {00241}, Singularity -[3,02], {00444}, Zenith -[3,03], {00182}, Cosmos -[3,04], {00501}, Vortex -[3,05], {00301}, Echo -[3,06], {00928}, Orion -[3,07], {00397}, Horizon -[3,08], {00129}, Neptune -[3,09], {00980}, Radiance -[3,10], {00960}, Infinity -[3,11], {00530}, Dynamo -[4,01], {00994}, Solstice -[4,02], {00271}, Polaris -[4,03], {00816}, Vortex -[4,04], {00469}, Velocity -[4,05], {00172}, Gravity -[4,06], {00881}, Orion -[4,07], {00207}, Cyclone -[4,08], {00184}, Infinity -[4,09], {00597}, Atlas -[4,10], {00618}, Velocity -[4,11], {00533}, Cosmos -[5,01], {00587}, Polaris -[5,02], {00740}, Radiance -[5,03], {00910}, Stardust -[5,04], {00573}, Echo -[5,05], {00579}, Vortex -[5,06], {00000}, UNUSED -[5,07], {00533}, Cascade -[5,08], {00270}, Forge -[5,09], {00000}, UNUSED -[5,10], {00890}, Titan -[5,11], {00926}, Lunar -[6,01], {00184}, Nexus -[6,02], {00674}, Singularity -[6,03], {00704}, Crystal -[6,04], {00416}, Glacier -[6,05], {00702}, Eclipse -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00581}, Spectrum -[6,09], {00000}, UNUSED -[6,10], {00895}, Mirage -[6,11], {00381}, Aero -[7,01], {00422}, Everest -[7,02], {00913}, Cyclone -[7,03], {00000}, UNUSED -[7,04], {00578}, Ember -[7,05], {00364}, Drift -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00888}, Arcadia -[7,09], {00000}, UNUSED -[7,10], {00678}, Spectrum -[7,11], {00706}, Gravity -[8,01], {00573}, Crystal -[8,02], {00238}, Everest -[8,03], {00000}, UNUSED -[8,04], {00170}, Horizon -[8,05], {00231}, Axis -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00139}, Vertex -[8,09], {00000}, UNUSED -[8,10], {00611}, Nimbus -[8,11], {00565}, Velocity +[01,01], {00213}, Echo +[01,02], {00966}, Inferno +[01,03], {00605}, Zenith +[01,04], {00110}, Spectrum +[01,05], {00102}, Mirage +[01,06], {00671}, Circuit +[01,07], {00249}, Twilight +[01,08], {00358}, Axis +[01,09], {00261}, Sol +[01,10], {00934}, Orion +[01,11], {00626}, Solstice +[02,01], {00505}, Voyager +[02,02], {00798}, Sol +[02,03], {00608}, Axis +[02,04], {00908}, Titan +[02,05], {00651}, Odyssey +[02,06], {00439}, Blaze +[02,07], {00807}, Polaris +[02,08], {00357}, Tesla +[02,09], {00288}, Meteor +[02,10], {00846}, Drift +[02,11], {00820}, Borealis +[03,01], {00241}, Singularity +[03,02], {00444}, Zenith +[03,03], {00182}, Cosmos +[03,04], {00501}, Vortex +[03,05], {00301}, Echo +[03,06], {00928}, Orion +[03,07], {00397}, Horizon +[03,08], {00129}, Neptune +[03,09], {00980}, Radiance +[03,10], {00960}, Infinity +[03,11], {00530}, Dynamo +[04,01], {00994}, Solstice +[04,02], {00271}, Polaris +[04,03], {00816}, Vortex +[04,04], {00469}, Velocity +[04,05], {00172}, Gravity +[04,06], {00881}, Orion +[04,07], {00207}, Cyclone +[04,08], {00184}, Infinity +[04,09], {00597}, Atlas +[04,10], {00618}, Velocity +[04,11], {00533}, Cosmos +[05,01], {00587}, Polaris +[05,02], {00740}, Radiance +[05,03], {00910}, Stardust +[05,04], {00573}, Echo +[05,05], {00579}, Vortex +[05,06], {00000}, UNUSED +[05,07], {00533}, Cascade +[05,08], {00270}, Forge +[05,09], {00000}, UNUSED +[05,10], {00890}, Titan +[05,11], {00926}, Lunar +[06,01], {00184}, Nexus +[06,02], {00674}, Singularity +[06,03], {00704}, Crystal +[06,04], {00416}, Glacier +[06,05], {00702}, Eclipse +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00581}, Spectrum +[06,09], {00000}, UNUSED +[06,10], {00895}, Mirage +[06,11], {00381}, Aero +[07,01], {00422}, Everest +[07,02], {00913}, Cyclone +[07,03], {00000}, UNUSED +[07,04], {00578}, Ember +[07,05], {00364}, Drift +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00888}, Arcadia +[07,09], {00000}, UNUSED +[07,10], {00678}, Spectrum +[07,11], {00706}, Gravity +[08,01], {00573}, Crystal +[08,02], {00238}, Everest +[08,03], {00000}, UNUSED +[08,04], {00170}, Horizon +[08,05], {00231}, Axis +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00139}, Vertex +[08,09], {00000}, UNUSED +[08,10], {00611}, Nimbus +[08,11], {00565}, Velocity diff --git a/Data/manifests/76Containers.txt b/Data/manifests/76Containers.txt index 1273c24..648d56e 100644 --- a/Data/manifests/76Containers.txt +++ b/Data/manifests/76Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00775}, Circuit -[1,02], {00139}, Polaris -[1,03], {00287}, Vortex -[1,04], {00344}, Axis -[1,05], {00850}, Velocity -[1,06], {00977}, Radiance -[1,07], {00951}, Mirage -[1,08], {00532}, Solstice -[1,09], {00653}, Borealis -[1,10], {00600}, Phoenix -[1,11], {00490}, Cyclone -[2,01], {00976}, Mirage -[2,02], {00777}, Vertex -[2,03], {00660}, Odyssey -[2,04], {00816}, Vertex -[2,05], {00830}, Orion -[2,06], {00999}, Arcadia -[2,07], {00778}, Phoenix -[2,08], {00751}, Singularity -[2,09], {00133}, Solstice -[2,10], {00395}, Aurora -[2,11], {00167}, Spectrum -[3,01], {00505}, Infinity -[3,02], {00488}, Nimbus -[3,03], {00514}, Arcadia -[3,04], {00634}, Orion -[3,05], {00899}, Shadow -[3,06], {00872}, Comet -[3,07], {00792}, Twilight -[3,08], {00980}, Polaris -[3,09], {00477}, Cascade -[3,10], {00187}, Everest -[3,11], {00967}, Glider -[4,01], {00000}, UNUSED -[4,02], {00446}, Neptune -[4,03], {00993}, Matrix -[4,04], {00568}, Ember -[4,05], {00977}, Nova -[4,06], {00307}, Echo -[4,07], {00980}, Twilight -[4,08], {00912}, Borealis -[4,09], {00237}, Velocity -[4,10], {00920}, Titan -[4,11], {00540}, Tesla -[5,01], {00000}, UNUSED -[5,02], {00861}, Mirage -[5,03], {00663}, Beacon -[5,04], {00957}, Velocity -[5,05], {00420}, Cascade -[5,06], {00922}, Spectrum -[5,07], {00789}, Echo -[5,08], {00481}, Borealis -[5,09], {00923}, Cascade -[5,10], {00319}, Aurora -[5,11], {00850}, Zenith -[6,01], {00000}, UNUSED -[6,02], {00307}, Titan -[6,03], {00725}, Cyclone -[6,04], {00638}, Lunar -[6,05], {00396}, Nexus -[6,06], {00203}, Voyager -[6,07], {00654}, Singularity -[6,08], {00160}, Comet -[6,09], {00214}, Zenith -[6,10], {00369}, Borealis -[6,11], {00885}, Halo -[7,01], {00000}, UNUSED -[7,02], {00258}, Velocity -[7,03], {00784}, Nimbus -[7,04], {00836}, Tesla -[7,05], {00923}, Nimbus -[7,06], {00621}, Beacon -[7,07], {00000}, UNUSED -[7,08], {00412}, Phoenix -[7,09], {00197}, Everest -[7,10], {00867}, Shadow -[7,11], {00509}, Neptune -[8,01], {00000}, UNUSED -[8,02], {00000}, UNUSED -[8,03], {00233}, Tesla -[8,04], {00000}, UNUSED -[8,05], {00749}, Cosmos -[8,06], {00491}, Comet -[8,07], {00000}, UNUSED -[8,08], {00301}, Cascade -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00000}, UNUSED +[01,01], {00775}, Circuit +[01,02], {00139}, Polaris +[01,03], {00287}, Vortex +[01,04], {00344}, Axis +[01,05], {00850}, Velocity +[01,06], {00977}, Radiance +[01,07], {00951}, Mirage +[01,08], {00532}, Solstice +[01,09], {00653}, Borealis +[01,10], {00600}, Phoenix +[01,11], {00490}, Cyclone +[02,01], {00976}, Mirage +[02,02], {00777}, Vertex +[02,03], {00660}, Odyssey +[02,04], {00816}, Vertex +[02,05], {00830}, Orion +[02,06], {00999}, Arcadia +[02,07], {00778}, Phoenix +[02,08], {00751}, Singularity +[02,09], {00133}, Solstice +[02,10], {00395}, Aurora +[02,11], {00167}, Spectrum +[03,01], {00505}, Infinity +[03,02], {00488}, Nimbus +[03,03], {00514}, Arcadia +[03,04], {00634}, Orion +[03,05], {00899}, Shadow +[03,06], {00872}, Comet +[03,07], {00792}, Twilight +[03,08], {00980}, Polaris +[03,09], {00477}, Cascade +[03,10], {00187}, Everest +[03,11], {00967}, Glider +[04,01], {00000}, UNUSED +[04,02], {00446}, Neptune +[04,03], {00993}, Matrix +[04,04], {00568}, Ember +[04,05], {00977}, Nova +[04,06], {00307}, Echo +[04,07], {00980}, Twilight +[04,08], {00912}, Borealis +[04,09], {00237}, Velocity +[04,10], {00920}, Titan +[04,11], {00540}, Tesla +[05,01], {00000}, UNUSED +[05,02], {00861}, Mirage +[05,03], {00663}, Beacon +[05,04], {00957}, Velocity +[05,05], {00420}, Cascade +[05,06], {00922}, Spectrum +[05,07], {00789}, Echo +[05,08], {00481}, Borealis +[05,09], {00923}, Cascade +[05,10], {00319}, Aurora +[05,11], {00850}, Zenith +[06,01], {00000}, UNUSED +[06,02], {00307}, Titan +[06,03], {00725}, Cyclone +[06,04], {00638}, Lunar +[06,05], {00396}, Nexus +[06,06], {00203}, Voyager +[06,07], {00654}, Singularity +[06,08], {00160}, Comet +[06,09], {00214}, Zenith +[06,10], {00369}, Borealis +[06,11], {00885}, Halo +[07,01], {00000}, UNUSED +[07,02], {00258}, Velocity +[07,03], {00784}, Nimbus +[07,04], {00836}, Tesla +[07,05], {00923}, Nimbus +[07,06], {00621}, Beacon +[07,07], {00000}, UNUSED +[07,08], {00412}, Phoenix +[07,09], {00197}, Everest +[07,10], {00867}, Shadow +[07,11], {00509}, Neptune +[08,01], {00000}, UNUSED +[08,02], {00000}, UNUSED +[08,03], {00233}, Tesla +[08,04], {00000}, UNUSED +[08,05], {00749}, Cosmos +[08,06], {00491}, Comet +[08,07], {00000}, UNUSED +[08,08], {00301}, Cascade +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00000}, UNUSED diff --git a/Data/manifests/77Containers.txt b/Data/manifests/77Containers.txt index 5b5bad5..2bb5d51 100644 --- a/Data/manifests/77Containers.txt +++ b/Data/manifests/77Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00248}, Quantum -[1,02], {00875}, Titan -[1,03], {00827}, Vortex -[1,04], {00242}, Quantum -[1,05], {00822}, Vortex -[1,06], {00508}, Dynamo -[1,07], {00622}, Spectrum -[1,08], {00427}, Mirage -[1,09], {00668}, Radiance -[1,10], {00603}, Meteor -[1,11], {00663}, Comet -[2,01], {00105}, Zenith -[2,02], {00977}, Spectrum -[2,03], {00533}, Horizon -[2,04], {00791}, Arcadia -[2,05], {00829}, Voyager -[2,06], {00203}, Shard -[2,07], {00678}, Gravity -[2,08], {00345}, Echo -[2,09], {00862}, Tectonic -[2,10], {00211}, Shadow -[2,11], {00181}, Prism -[3,01], {00464}, Odyssey -[3,02], {00967}, Vertex -[3,03], {00428}, Solstice -[3,04], {00923}, Circuit -[3,05], {00445}, Nimbus -[3,06], {00636}, Borealis -[3,07], {00203}, Spectrum -[3,08], {00410}, Horizon -[3,09], {00728}, Drift -[3,10], {00610}, Velocity -[3,11], {00832}, Meteor -[4,01], {00908}, Horizon -[4,02], {00000}, UNUSED -[4,03], {00561}, Lunar -[4,04], {00170}, Glider -[4,05], {00506}, Velocity -[4,06], {00142}, Drift -[4,07], {00961}, Cosmos -[4,08], {00370}, Nimbus -[4,09], {00562}, Circuit -[4,10], {00759}, Zephyr -[4,11], {00206}, Zenith -[5,01], {00124}, Velocity -[5,02], {00000}, UNUSED -[5,03], {00315}, Spectrum -[5,04], {00719}, Apollo -[5,05], {00120}, Zenith -[5,06], {00272}, Aero -[5,07], {00986}, Mirage -[5,08], {00511}, Meteor -[5,09], {00910}, Shadow -[5,10], {00158}, Odyssey -[5,11], {00898}, Dynamo -[6,01], {00858}, Tectonic -[6,02], {00000}, UNUSED -[6,03], {00803}, Glacier -[6,04], {00406}, Infinity -[6,05], {00000}, UNUSED -[6,06], {00416}, Horizon -[6,07], {00570}, Tectonic -[6,08], {00937}, Velocity -[6,09], {00828}, Horizon -[6,10], {00620}, Blaze -[6,11], {00370}, Horizon -[7,01], {00953}, Odyssey -[7,02], {00000}, UNUSED -[7,03], {00731}, Zenith -[7,04], {00890}, Meteor -[7,05], {00000}, UNUSED -[7,06], {00965}, Cascade -[7,07], {00000}, UNUSED -[7,08], {00767}, Halo -[7,09], {00231}, Cosmos -[7,10], {00310}, Tesla -[7,11], {00384}, Circuit -[8,01], {00302}, Horizon -[8,02], {00000}, UNUSED -[8,03], {00700}, Shard -[8,04], {00317}, Vertex -[8,05], {00000}, UNUSED -[8,06], {00283}, Twilight -[8,07], {00000}, UNUSED -[8,08], {00847}, Echo -[8,09], {00129}, Atlas -[8,10], {00000}, UNUSED -[8,11], {00594}, Eclipse +[01,01], {00248}, Quantum +[01,02], {00875}, Titan +[01,03], {00827}, Vortex +[01,04], {00242}, Quantum +[01,05], {00822}, Vortex +[01,06], {00508}, Dynamo +[01,07], {00622}, Spectrum +[01,08], {00427}, Mirage +[01,09], {00668}, Radiance +[01,10], {00603}, Meteor +[01,11], {00663}, Comet +[02,01], {00105}, Zenith +[02,02], {00977}, Spectrum +[02,03], {00533}, Horizon +[02,04], {00791}, Arcadia +[02,05], {00829}, Voyager +[02,06], {00203}, Shard +[02,07], {00678}, Gravity +[02,08], {00345}, Echo +[02,09], {00862}, Tectonic +[02,10], {00211}, Shadow +[02,11], {00181}, Prism +[03,01], {00464}, Odyssey +[03,02], {00967}, Vertex +[03,03], {00428}, Solstice +[03,04], {00923}, Circuit +[03,05], {00445}, Nimbus +[03,06], {00636}, Borealis +[03,07], {00203}, Spectrum +[03,08], {00410}, Horizon +[03,09], {00728}, Drift +[03,10], {00610}, Velocity +[03,11], {00832}, Meteor +[04,01], {00908}, Horizon +[04,02], {00000}, UNUSED +[04,03], {00561}, Lunar +[04,04], {00170}, Glider +[04,05], {00506}, Velocity +[04,06], {00142}, Drift +[04,07], {00961}, Cosmos +[04,08], {00370}, Nimbus +[04,09], {00562}, Circuit +[04,10], {00759}, Zephyr +[04,11], {00206}, Zenith +[05,01], {00124}, Velocity +[05,02], {00000}, UNUSED +[05,03], {00315}, Spectrum +[05,04], {00719}, Apollo +[05,05], {00120}, Zenith +[05,06], {00272}, Aero +[05,07], {00986}, Mirage +[05,08], {00511}, Meteor +[05,09], {00910}, Shadow +[05,10], {00158}, Odyssey +[05,11], {00898}, Dynamo +[06,01], {00858}, Tectonic +[06,02], {00000}, UNUSED +[06,03], {00803}, Glacier +[06,04], {00406}, Infinity +[06,05], {00000}, UNUSED +[06,06], {00416}, Horizon +[06,07], {00570}, Tectonic +[06,08], {00937}, Velocity +[06,09], {00828}, Horizon +[06,10], {00620}, Blaze +[06,11], {00370}, Horizon +[07,01], {00953}, Odyssey +[07,02], {00000}, UNUSED +[07,03], {00731}, Zenith +[07,04], {00890}, Meteor +[07,05], {00000}, UNUSED +[07,06], {00965}, Cascade +[07,07], {00000}, UNUSED +[07,08], {00767}, Halo +[07,09], {00231}, Cosmos +[07,10], {00310}, Tesla +[07,11], {00384}, Circuit +[08,01], {00302}, Horizon +[08,02], {00000}, UNUSED +[08,03], {00700}, Shard +[08,04], {00317}, Vertex +[08,05], {00000}, UNUSED +[08,06], {00283}, Twilight +[08,07], {00000}, UNUSED +[08,08], {00847}, Echo +[08,09], {00129}, Atlas +[08,10], {00000}, UNUSED +[08,11], {00594}, Eclipse diff --git a/Data/manifests/78Containers.txt b/Data/manifests/78Containers.txt index 43d931a..324d652 100644 --- a/Data/manifests/78Containers.txt +++ b/Data/manifests/78Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00341}, Axis -[1,02], {00402}, Titan -[1,03], {00436}, Solstice -[1,04], {00552}, Blaze -[1,05], {00828}, Phoenix -[1,06], {00371}, Quantum -[1,07], {00827}, Zenith -[1,08], {00779}, Twilight -[1,09], {00692}, Glider -[1,10], {00531}, Odyssey -[1,11], {00973}, Nova -[2,01], {00924}, Aero -[2,02], {00475}, Sol -[2,03], {00463}, Polaris -[2,04], {00499}, Singularity -[2,05], {00281}, Glider -[2,06], {00304}, Inferno -[2,07], {00329}, Ember -[2,08], {00310}, Vertex -[2,09], {00842}, Prism -[2,10], {00541}, Comet -[2,11], {00927}, Quantum -[3,01], {00468}, Sol -[3,02], {00415}, Orion -[3,03], {00357}, Zenith -[3,04], {00545}, Prism -[3,05], {00248}, Cyclone -[3,06], {00208}, Zephyr -[3,07], {00625}, Everest -[3,08], {00484}, Eclipse -[3,09], {00867}, Inferno -[3,10], {00894}, Eclipse -[3,11], {00864}, Zenith -[4,01], {00603}, Circuit -[4,02], {00270}, Beacon -[4,03], {00661}, Halo -[4,04], {00161}, Lunar -[4,05], {00857}, Echo -[4,06], {00118}, Horizon -[4,07], {00622}, Tectonic -[4,08], {00183}, Halo -[4,09], {00908}, Drift -[4,10], {00934}, Sol -[4,11], {00734}, Drift -[5,01], {00437}, Gravity -[5,02], {00221}, Shadow -[5,03], {00899}, Quantum -[5,04], {00717}, Vertex -[5,05], {00843}, Horizon -[5,06], {00994}, Crystal -[5,07], {00000}, UNUSED -[5,08], {00221}, Lunar -[5,09], {00438}, Cascade -[5,10], {00695}, Circuit -[5,11], {00580}, Vortex -[6,01], {00727}, Forge -[6,02], {00755}, Everest -[6,03], {00000}, UNUSED -[6,04], {00547}, Zephyr -[6,05], {00173}, Gravity -[6,06], {00000}, UNUSED -[6,07], {00000}, UNUSED -[6,08], {00736}, Stardust -[6,09], {00861}, Forge -[6,10], {00341}, Aurora -[6,11], {00758}, Vortex -[7,01], {00186}, Eclipse -[7,02], {00147}, Spectrum -[7,03], {00000}, UNUSED -[7,04], {00918}, Zenith -[7,05], {00422}, Vertex -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00819}, Lunar -[7,09], {00385}, Infinity -[7,10], {00410}, Velocity -[7,11], {00581}, Solstice -[8,01], {00463}, Meteor -[8,02], {00331}, Zenith -[8,03], {00000}, UNUSED -[8,04], {00648}, Phoenix -[8,05], {00673}, Everest -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00577}, Matrix -[8,09], {00519}, Nexus -[8,10], {00790}, Drift -[8,11], {00574}, Glacier +[01,01], {00341}, Axis +[01,02], {00402}, Titan +[01,03], {00436}, Solstice +[01,04], {00552}, Blaze +[01,05], {00828}, Phoenix +[01,06], {00371}, Quantum +[01,07], {00827}, Zenith +[01,08], {00779}, Twilight +[01,09], {00692}, Glider +[01,10], {00531}, Odyssey +[01,11], {00973}, Nova +[02,01], {00924}, Aero +[02,02], {00475}, Sol +[02,03], {00463}, Polaris +[02,04], {00499}, Singularity +[02,05], {00281}, Glider +[02,06], {00304}, Inferno +[02,07], {00329}, Ember +[02,08], {00310}, Vertex +[02,09], {00842}, Prism +[02,10], {00541}, Comet +[02,11], {00927}, Quantum +[03,01], {00468}, Sol +[03,02], {00415}, Orion +[03,03], {00357}, Zenith +[03,04], {00545}, Prism +[03,05], {00248}, Cyclone +[03,06], {00208}, Zephyr +[03,07], {00625}, Everest +[03,08], {00484}, Eclipse +[03,09], {00867}, Inferno +[03,10], {00894}, Eclipse +[03,11], {00864}, Zenith +[04,01], {00603}, Circuit +[04,02], {00270}, Beacon +[04,03], {00661}, Halo +[04,04], {00161}, Lunar +[04,05], {00857}, Echo +[04,06], {00118}, Horizon +[04,07], {00622}, Tectonic +[04,08], {00183}, Halo +[04,09], {00908}, Drift +[04,10], {00934}, Sol +[04,11], {00734}, Drift +[05,01], {00437}, Gravity +[05,02], {00221}, Shadow +[05,03], {00899}, Quantum +[05,04], {00717}, Vertex +[05,05], {00843}, Horizon +[05,06], {00994}, Crystal +[05,07], {00000}, UNUSED +[05,08], {00221}, Lunar +[05,09], {00438}, Cascade +[05,10], {00695}, Circuit +[05,11], {00580}, Vortex +[06,01], {00727}, Forge +[06,02], {00755}, Everest +[06,03], {00000}, UNUSED +[06,04], {00547}, Zephyr +[06,05], {00173}, Gravity +[06,06], {00000}, UNUSED +[06,07], {00000}, UNUSED +[06,08], {00736}, Stardust +[06,09], {00861}, Forge +[06,10], {00341}, Aurora +[06,11], {00758}, Vortex +[07,01], {00186}, Eclipse +[07,02], {00147}, Spectrum +[07,03], {00000}, UNUSED +[07,04], {00918}, Zenith +[07,05], {00422}, Vertex +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00819}, Lunar +[07,09], {00385}, Infinity +[07,10], {00410}, Velocity +[07,11], {00581}, Solstice +[08,01], {00463}, Meteor +[08,02], {00331}, Zenith +[08,03], {00000}, UNUSED +[08,04], {00648}, Phoenix +[08,05], {00673}, Everest +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00577}, Matrix +[08,09], {00519}, Nexus +[08,10], {00790}, Drift +[08,11], {00574}, Glacier diff --git a/Data/manifests/79Containers.txt b/Data/manifests/79Containers.txt index 65b4d03..ff947ed 100644 --- a/Data/manifests/79Containers.txt +++ b/Data/manifests/79Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00216}, Echo -[1,02], {00601}, Horizon -[1,03], {00629}, Twilight -[1,04], {00351}, Everest -[1,05], {00990}, Vortex -[1,06], {00499}, Nexus -[1,07], {00496}, Sol -[1,08], {00368}, Shard -[1,09], {00694}, Blaze -[1,10], {00667}, Atlas -[1,11], {00946}, Dynamo -[2,01], {00121}, Gravity -[2,02], {00348}, Velocity -[2,03], {00721}, Glider -[2,04], {00254}, Phoenix -[2,05], {00905}, Zenith -[2,06], {00483}, Stardust -[2,07], {00884}, Forge -[2,08], {00504}, Drift -[2,09], {00638}, Glider -[2,10], {00165}, Voyager -[2,11], {00878}, Beacon -[3,01], {00635}, Phoenix -[3,02], {00951}, Halo -[3,03], {00429}, Singularity -[3,04], {00802}, Orion -[3,05], {00874}, Matrix -[3,06], {00219}, Zenith -[3,07], {00528}, Polaris -[3,08], {00917}, Arcadia -[3,09], {00912}, Aero -[3,10], {00170}, Cyclone -[3,11], {00978}, Glider -[4,01], {00893}, Inferno -[4,02], {00790}, Nexus -[4,03], {00883}, Eclipse -[4,04], {00129}, Zenith -[4,05], {00748}, Vertex -[4,06], {00995}, Cyclone -[4,07], {00877}, Lunar -[4,08], {00310}, Odyssey -[4,09], {00997}, Glacier -[4,10], {00608}, Aurora -[4,11], {00822}, Quantum -[5,01], {00210}, Echo -[5,02], {00319}, Everest -[5,03], {00930}, Sol -[5,04], {00506}, Shadow -[5,05], {00674}, Vertex -[5,06], {00341}, Cyclone -[5,07], {00403}, Crystal -[5,08], {00618}, Zenith -[5,09], {00853}, Neptune -[5,10], {00537}, Neptune -[5,11], {00407}, Velocity -[6,01], {00390}, Cyclone -[6,02], {00473}, Orion -[6,03], {00350}, Axis -[6,04], {00267}, Aero -[6,05], {00802}, Meteor -[6,06], {00838}, Halo -[6,07], {00951}, Beacon -[6,08], {00000}, UNUSED -[6,09], {00473}, Glider -[6,10], {00000}, UNUSED -[6,11], {00813}, Matrix -[7,01], {00336}, Eclipse -[7,02], {00000}, UNUSED -[7,03], {00547}, Stardust -[7,04], {00711}, Arcadia -[7,05], {00282}, Eclipse -[7,06], {00854}, Echo -[7,07], {00457}, Glider -[7,08], {00000}, UNUSED -[7,09], {00591}, Sol -[7,10], {00000}, UNUSED -[7,11], {00389}, Circuit -[8,01], {00352}, Aero -[8,02], {00000}, UNUSED -[8,03], {00261}, Voyager -[8,04], {00829}, Nova -[8,05], {00167}, Blaze -[8,06], {00830}, Nexus -[8,07], {00199}, Nova -[8,08], {00000}, UNUSED -[8,09], {00000}, UNUSED -[8,10], {00000}, UNUSED -[8,11], {00184}, Aero +[01,01], {00216}, Echo +[01,02], {00601}, Horizon +[01,03], {00629}, Twilight +[01,04], {00351}, Everest +[01,05], {00990}, Vortex +[01,06], {00499}, Nexus +[01,07], {00496}, Sol +[01,08], {00368}, Shard +[01,09], {00694}, Blaze +[01,10], {00667}, Atlas +[01,11], {00946}, Dynamo +[02,01], {00121}, Gravity +[02,02], {00348}, Velocity +[02,03], {00721}, Glider +[02,04], {00254}, Phoenix +[02,05], {00905}, Zenith +[02,06], {00483}, Stardust +[02,07], {00884}, Forge +[02,08], {00504}, Drift +[02,09], {00638}, Glider +[02,10], {00165}, Voyager +[02,11], {00878}, Beacon +[03,01], {00635}, Phoenix +[03,02], {00951}, Halo +[03,03], {00429}, Singularity +[03,04], {00802}, Orion +[03,05], {00874}, Matrix +[03,06], {00219}, Zenith +[03,07], {00528}, Polaris +[03,08], {00917}, Arcadia +[03,09], {00912}, Aero +[03,10], {00170}, Cyclone +[03,11], {00978}, Glider +[04,01], {00893}, Inferno +[04,02], {00790}, Nexus +[04,03], {00883}, Eclipse +[04,04], {00129}, Zenith +[04,05], {00748}, Vertex +[04,06], {00995}, Cyclone +[04,07], {00877}, Lunar +[04,08], {00310}, Odyssey +[04,09], {00997}, Glacier +[04,10], {00608}, Aurora +[04,11], {00822}, Quantum +[05,01], {00210}, Echo +[05,02], {00319}, Everest +[05,03], {00930}, Sol +[05,04], {00506}, Shadow +[05,05], {00674}, Vertex +[05,06], {00341}, Cyclone +[05,07], {00403}, Crystal +[05,08], {00618}, Zenith +[05,09], {00853}, Neptune +[05,10], {00537}, Neptune +[05,11], {00407}, Velocity +[06,01], {00390}, Cyclone +[06,02], {00473}, Orion +[06,03], {00350}, Axis +[06,04], {00267}, Aero +[06,05], {00802}, Meteor +[06,06], {00838}, Halo +[06,07], {00951}, Beacon +[06,08], {00000}, UNUSED +[06,09], {00473}, Glider +[06,10], {00000}, UNUSED +[06,11], {00813}, Matrix +[07,01], {00336}, Eclipse +[07,02], {00000}, UNUSED +[07,03], {00547}, Stardust +[07,04], {00711}, Arcadia +[07,05], {00282}, Eclipse +[07,06], {00854}, Echo +[07,07], {00457}, Glider +[07,08], {00000}, UNUSED +[07,09], {00591}, Sol +[07,10], {00000}, UNUSED +[07,11], {00389}, Circuit +[08,01], {00352}, Aero +[08,02], {00000}, UNUSED +[08,03], {00261}, Voyager +[08,04], {00829}, Nova +[08,05], {00167}, Blaze +[08,06], {00830}, Nexus +[08,07], {00199}, Nova +[08,08], {00000}, UNUSED +[08,09], {00000}, UNUSED +[08,10], {00000}, UNUSED +[08,11], {00184}, Aero diff --git a/Data/manifests/80Containers.txt b/Data/manifests/80Containers.txt index bcbec4b..1b30b7a 100644 --- a/Data/manifests/80Containers.txt +++ b/Data/manifests/80Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00953}, Spectrum -[1,02], {00137}, Nimbus -[1,03], {00137}, Phoenix -[1,04], {00942}, Quantum -[1,05], {00370}, Phoenix -[1,06], {00877}, Zephyr -[1,07], {00499}, Polaris -[1,08], {00666}, Borealis -[1,09], {00824}, Zenith -[1,10], {00573}, Radiance -[1,11], {00304}, Phoenix -[2,01], {00369}, Horizon -[2,02], {00487}, Nova -[2,03], {00874}, Aurora -[2,04], {00859}, Inferno -[2,05], {00775}, Zenith -[2,06], {00594}, Dynamo -[2,07], {00732}, Beacon -[2,08], {00759}, Orion -[2,09], {00504}, Solstice -[2,10], {00662}, Glider -[2,11], {00301}, Inferno -[3,01], {00626}, Prism -[3,02], {00685}, Polaris -[3,03], {00829}, Cyclone -[3,04], {00845}, Orion -[3,05], {00484}, Blaze -[3,06], {00244}, Horizon -[3,07], {00939}, Spectrum -[3,08], {00738}, Vortex -[3,09], {00857}, Velocity -[3,10], {00770}, Borealis -[3,11], {00368}, Comet -[4,01], {00921}, Drift -[4,02], {00974}, Aurora -[4,03], {00118}, Echo -[4,04], {00721}, Eclipse -[4,05], {00672}, Inferno -[4,06], {00522}, Matrix -[4,07], {00534}, Zenith -[4,08], {00873}, Stardust -[4,09], {00634}, Nexus -[4,10], {00634}, Echo -[4,11], {00244}, Vertex -[5,01], {00153}, Twilight -[5,02], {00609}, Arcadia -[5,03], {00504}, Radiance -[5,04], {00836}, Halo -[5,05], {00751}, Borealis -[5,06], {00827}, Spectrum -[5,07], {00248}, Matrix -[5,08], {00130}, Blaze -[5,09], {00239}, Quantum -[5,10], {00472}, Polaris -[5,11], {00000}, UNUSED -[6,01], {00354}, Echo -[6,02], {00709}, Tectonic -[6,03], {00443}, Phoenix -[6,04], {00300}, Quantum -[6,05], {00366}, Quantum -[6,06], {00981}, Blaze -[6,07], {00320}, Cyclone -[6,08], {00613}, Apollo -[6,09], {00625}, Vertex -[6,10], {00995}, Radiance -[6,11], {00000}, UNUSED -[7,01], {00790}, Shadow -[7,02], {00000}, UNUSED -[7,03], {00176}, Quantum -[7,04], {00603}, Tesla -[7,05], {00000}, UNUSED -[7,06], {00992}, Comet -[7,07], {00603}, Orion -[7,08], {00432}, Drift -[7,09], {00401}, Horizon -[7,10], {00302}, Zephyr -[7,11], {00000}, UNUSED -[8,01], {00345}, Tesla -[8,02], {00000}, UNUSED -[8,03], {00152}, Shard -[8,04], {00215}, Atlas -[8,05], {00000}, UNUSED -[8,06], {00957}, Velocity -[8,07], {00421}, Odyssey -[8,08], {00921}, Arcadia -[8,09], {00894}, Odyssey -[8,10], {00484}, Velocity -[8,11], {00000}, UNUSED +[01,01], {00953}, Spectrum +[01,02], {00137}, Nimbus +[01,03], {00137}, Phoenix +[01,04], {00942}, Quantum +[01,05], {00370}, Phoenix +[01,06], {00877}, Zephyr +[01,07], {00499}, Polaris +[01,08], {00666}, Borealis +[01,09], {00824}, Zenith +[01,10], {00573}, Radiance +[01,11], {00304}, Phoenix +[02,01], {00369}, Horizon +[02,02], {00487}, Nova +[02,03], {00874}, Aurora +[02,04], {00859}, Inferno +[02,05], {00775}, Zenith +[02,06], {00594}, Dynamo +[02,07], {00732}, Beacon +[02,08], {00759}, Orion +[02,09], {00504}, Solstice +[02,10], {00662}, Glider +[02,11], {00301}, Inferno +[03,01], {00626}, Prism +[03,02], {00685}, Polaris +[03,03], {00829}, Cyclone +[03,04], {00845}, Orion +[03,05], {00484}, Blaze +[03,06], {00244}, Horizon +[03,07], {00939}, Spectrum +[03,08], {00738}, Vortex +[03,09], {00857}, Velocity +[03,10], {00770}, Borealis +[03,11], {00368}, Comet +[04,01], {00921}, Drift +[04,02], {00974}, Aurora +[04,03], {00118}, Echo +[04,04], {00721}, Eclipse +[04,05], {00672}, Inferno +[04,06], {00522}, Matrix +[04,07], {00534}, Zenith +[04,08], {00873}, Stardust +[04,09], {00634}, Nexus +[04,10], {00634}, Echo +[04,11], {00244}, Vertex +[05,01], {00153}, Twilight +[05,02], {00609}, Arcadia +[05,03], {00504}, Radiance +[05,04], {00836}, Halo +[05,05], {00751}, Borealis +[05,06], {00827}, Spectrum +[05,07], {00248}, Matrix +[05,08], {00130}, Blaze +[05,09], {00239}, Quantum +[05,10], {00472}, Polaris +[05,11], {00000}, UNUSED +[06,01], {00354}, Echo +[06,02], {00709}, Tectonic +[06,03], {00443}, Phoenix +[06,04], {00300}, Quantum +[06,05], {00366}, Quantum +[06,06], {00981}, Blaze +[06,07], {00320}, Cyclone +[06,08], {00613}, Apollo +[06,09], {00625}, Vertex +[06,10], {00995}, Radiance +[06,11], {00000}, UNUSED +[07,01], {00790}, Shadow +[07,02], {00000}, UNUSED +[07,03], {00176}, Quantum +[07,04], {00603}, Tesla +[07,05], {00000}, UNUSED +[07,06], {00992}, Comet +[07,07], {00603}, Orion +[07,08], {00432}, Drift +[07,09], {00401}, Horizon +[07,10], {00302}, Zephyr +[07,11], {00000}, UNUSED +[08,01], {00345}, Tesla +[08,02], {00000}, UNUSED +[08,03], {00152}, Shard +[08,04], {00215}, Atlas +[08,05], {00000}, UNUSED +[08,06], {00957}, Velocity +[08,07], {00421}, Odyssey +[08,08], {00921}, Arcadia +[08,09], {00894}, Odyssey +[08,10], {00484}, Velocity +[08,11], {00000}, UNUSED diff --git a/Data/manifests/81Containers.txt b/Data/manifests/81Containers.txt index 9c0b026..212bf75 100644 --- a/Data/manifests/81Containers.txt +++ b/Data/manifests/81Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00917}, Infinity -[1,02], {00826}, Ember -[1,03], {00733}, Stardust -[1,04], {00409}, Sol -[1,05], {00962}, Apollo -[1,06], {00454}, Mirage -[1,07], {00963}, Zenith -[1,08], {00463}, Zenith -[1,09], {00518}, Blaze -[1,10], {00472}, Vortex -[1,11], {00179}, Vertex -[2,01], {00791}, Eclipse -[2,02], {00829}, Nova -[2,03], {00692}, Matrix -[2,04], {00627}, Inferno -[2,05], {00220}, Spectrum -[2,06], {00604}, Blaze -[2,07], {00921}, Circuit -[2,08], {00439}, Vertex -[2,09], {00198}, Tectonic -[2,10], {00383}, Inferno -[2,11], {00322}, Lunar -[3,01], {00180}, Cosmos -[3,02], {00665}, Vertex -[3,03], {00849}, Glacier -[3,04], {00669}, Phoenix -[3,05], {00753}, Matrix -[3,06], {00552}, Vertex -[3,07], {00893}, Twilight -[3,08], {00950}, Polaris -[3,09], {00902}, Drift -[3,10], {00560}, Zenith -[3,11], {00352}, Velocity -[4,01], {00882}, Infinity -[4,02], {00702}, Crystal -[4,03], {00689}, Circuit -[4,04], {00434}, Cascade -[4,05], {00819}, Sol -[4,06], {00554}, Vertex -[4,07], {00567}, Horizon -[4,08], {00634}, Echo -[4,09], {00390}, Nexus -[4,10], {00940}, Zenith -[4,11], {00850}, Vortex -[5,01], {00812}, Voyager -[5,02], {00215}, Tectonic -[5,03], {00637}, Orion -[5,04], {00486}, Titan -[5,05], {00134}, Zenith -[5,06], {00398}, Velocity -[5,07], {00774}, Axis -[5,08], {00307}, Horizon -[5,09], {00848}, Axis -[5,10], {00224}, Eclipse -[5,11], {00804}, Zenith -[6,01], {00000}, UNUSED -[6,02], {00897}, Vertex -[6,03], {00606}, Singularity -[6,04], {00505}, Spectrum -[6,05], {00570}, Nexus -[6,06], {00203}, Aurora -[6,07], {00321}, Aero -[6,08], {00280}, Comet -[6,09], {00270}, Eclipse -[6,10], {00784}, Crystal -[6,11], {00232}, Vertex -[7,01], {00000}, UNUSED -[7,02], {00468}, Stardust -[7,03], {00000}, UNUSED -[7,04], {00136}, Apollo -[7,05], {00414}, Sol -[7,06], {00544}, Prism -[7,07], {00443}, Vortex -[7,08], {00732}, Ember -[7,09], {00000}, UNUSED -[7,10], {00798}, Gravity -[7,11], {00909}, Infinity -[8,01], {00000}, UNUSED -[8,02], {00238}, Ember -[8,03], {00000}, UNUSED -[8,04], {00173}, Spectrum -[8,05], {00930}, Neptune -[8,06], {00267}, Matrix -[8,07], {00250}, Dynamo -[8,08], {00128}, Spectrum -[8,09], {00000}, UNUSED -[8,10], {00732}, Shard -[8,11], {00287}, Zenith +[01,01], {00917}, Infinity +[01,02], {00826}, Ember +[01,03], {00733}, Stardust +[01,04], {00409}, Sol +[01,05], {00962}, Apollo +[01,06], {00454}, Mirage +[01,07], {00963}, Zenith +[01,08], {00463}, Zenith +[01,09], {00518}, Blaze +[01,10], {00472}, Vortex +[01,11], {00179}, Vertex +[02,01], {00791}, Eclipse +[02,02], {00829}, Nova +[02,03], {00692}, Matrix +[02,04], {00627}, Inferno +[02,05], {00220}, Spectrum +[02,06], {00604}, Blaze +[02,07], {00921}, Circuit +[02,08], {00439}, Vertex +[02,09], {00198}, Tectonic +[02,10], {00383}, Inferno +[02,11], {00322}, Lunar +[03,01], {00180}, Cosmos +[03,02], {00665}, Vertex +[03,03], {00849}, Glacier +[03,04], {00669}, Phoenix +[03,05], {00753}, Matrix +[03,06], {00552}, Vertex +[03,07], {00893}, Twilight +[03,08], {00950}, Polaris +[03,09], {00902}, Drift +[03,10], {00560}, Zenith +[03,11], {00352}, Velocity +[04,01], {00882}, Infinity +[04,02], {00702}, Crystal +[04,03], {00689}, Circuit +[04,04], {00434}, Cascade +[04,05], {00819}, Sol +[04,06], {00554}, Vertex +[04,07], {00567}, Horizon +[04,08], {00634}, Echo +[04,09], {00390}, Nexus +[04,10], {00940}, Zenith +[04,11], {00850}, Vortex +[05,01], {00812}, Voyager +[05,02], {00215}, Tectonic +[05,03], {00637}, Orion +[05,04], {00486}, Titan +[05,05], {00134}, Zenith +[05,06], {00398}, Velocity +[05,07], {00774}, Axis +[05,08], {00307}, Horizon +[05,09], {00848}, Axis +[05,10], {00224}, Eclipse +[05,11], {00804}, Zenith +[06,01], {00000}, UNUSED +[06,02], {00897}, Vertex +[06,03], {00606}, Singularity +[06,04], {00505}, Spectrum +[06,05], {00570}, Nexus +[06,06], {00203}, Aurora +[06,07], {00321}, Aero +[06,08], {00280}, Comet +[06,09], {00270}, Eclipse +[06,10], {00784}, Crystal +[06,11], {00232}, Vertex +[07,01], {00000}, UNUSED +[07,02], {00468}, Stardust +[07,03], {00000}, UNUSED +[07,04], {00136}, Apollo +[07,05], {00414}, Sol +[07,06], {00544}, Prism +[07,07], {00443}, Vortex +[07,08], {00732}, Ember +[07,09], {00000}, UNUSED +[07,10], {00798}, Gravity +[07,11], {00909}, Infinity +[08,01], {00000}, UNUSED +[08,02], {00238}, Ember +[08,03], {00000}, UNUSED +[08,04], {00173}, Spectrum +[08,05], {00930}, Neptune +[08,06], {00267}, Matrix +[08,07], {00250}, Dynamo +[08,08], {00128}, Spectrum +[08,09], {00000}, UNUSED +[08,10], {00732}, Shard +[08,11], {00287}, Zenith diff --git a/Data/manifests/82Containers.txt b/Data/manifests/82Containers.txt index 3633a46..6e2d662 100644 --- a/Data/manifests/82Containers.txt +++ b/Data/manifests/82Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00859}, Blaze -[1,02], {00111}, Matrix -[1,03], {00745}, Glider -[1,04], {00650}, Twilight -[1,05], {00155}, Echo -[1,06], {00182}, Tectonic -[1,07], {00954}, Ember -[1,08], {00507}, Velocity -[1,09], {00582}, Horizon -[1,10], {00741}, Shard -[1,11], {00849}, Everest -[2,01], {00417}, Inferno -[2,02], {00994}, Circuit -[2,03], {00172}, Everest -[2,04], {00792}, Shadow -[2,05], {00373}, Crystal -[2,06], {00479}, Zenith -[2,07], {00416}, Zenith -[2,08], {00155}, Radiance -[2,09], {00253}, Everest -[2,10], {00930}, Prism -[2,11], {00485}, Mirage -[3,01], {00636}, Nexus -[3,02], {00296}, Spectrum -[3,03], {00552}, Ember -[3,04], {00810}, Zenith -[3,05], {00539}, Arcadia -[3,06], {00354}, Twilight -[3,07], {00864}, Spectrum -[3,08], {00538}, Quantum -[3,09], {00426}, Twilight -[3,10], {00685}, Prism -[3,11], {00424}, Titan -[4,01], {00392}, Drift -[4,02], {00772}, Cyclone -[4,03], {00870}, Blaze -[4,04], {00438}, Eclipse -[4,05], {00225}, Shadow -[4,06], {00879}, Echo -[4,07], {00456}, Velocity -[4,08], {00633}, Beacon -[4,09], {01000}, Orion -[4,10], {00288}, Infinity -[4,11], {00636}, Halo -[5,01], {00395}, Blaze -[5,02], {00403}, Mirage -[5,03], {00995}, Horizon -[5,04], {00426}, Radiance -[5,05], {00991}, Eclipse -[5,06], {00777}, Velocity -[5,07], {00202}, Circuit -[5,08], {00448}, Axis -[5,09], {00822}, Shard -[5,10], {00676}, Glider -[5,11], {00806}, Ember -[6,01], {00858}, Arcadia -[6,02], {00759}, Comet -[6,03], {00243}, Shadow -[6,04], {00611}, Nova -[6,05], {00178}, Apollo -[6,06], {00000}, UNUSED -[6,07], {00908}, Nexus -[6,08], {00670}, Meteor -[6,09], {00956}, Vortex -[6,10], {00259}, Zenith -[6,11], {00345}, Vertex -[7,01], {00228}, Eclipse -[7,02], {00693}, Phoenix -[7,03], {00226}, Infinity -[7,04], {00655}, Orion -[7,05], {00827}, Cosmos -[7,06], {00000}, UNUSED -[7,07], {00000}, UNUSED -[7,08], {00167}, Crystal -[7,09], {00246}, Drift -[7,10], {00223}, Eclipse -[7,11], {00154}, Stardust -[8,01], {00192}, Spectrum -[8,02], {00995}, Odyssey -[8,03], {00597}, Radiance -[8,04], {00654}, Lunar -[8,05], {00369}, Infinity -[8,06], {00000}, UNUSED -[8,07], {00000}, UNUSED -[8,08], {00000}, UNUSED -[8,09], {00939}, Velocity -[8,10], {00261}, Echo -[8,11], {00294}, Zephyr +[01,01], {00859}, Blaze +[01,02], {00111}, Matrix +[01,03], {00745}, Glider +[01,04], {00650}, Twilight +[01,05], {00155}, Echo +[01,06], {00182}, Tectonic +[01,07], {00954}, Ember +[01,08], {00507}, Velocity +[01,09], {00582}, Horizon +[01,10], {00741}, Shard +[01,11], {00849}, Everest +[02,01], {00417}, Inferno +[02,02], {00994}, Circuit +[02,03], {00172}, Everest +[02,04], {00792}, Shadow +[02,05], {00373}, Crystal +[02,06], {00479}, Zenith +[02,07], {00416}, Zenith +[02,08], {00155}, Radiance +[02,09], {00253}, Everest +[02,10], {00930}, Prism +[02,11], {00485}, Mirage +[03,01], {00636}, Nexus +[03,02], {00296}, Spectrum +[03,03], {00552}, Ember +[03,04], {00810}, Zenith +[03,05], {00539}, Arcadia +[03,06], {00354}, Twilight +[03,07], {00864}, Spectrum +[03,08], {00538}, Quantum +[03,09], {00426}, Twilight +[03,10], {00685}, Prism +[03,11], {00424}, Titan +[04,01], {00392}, Drift +[04,02], {00772}, Cyclone +[04,03], {00870}, Blaze +[04,04], {00438}, Eclipse +[04,05], {00225}, Shadow +[04,06], {00879}, Echo +[04,07], {00456}, Velocity +[04,08], {00633}, Beacon +[04,09], {01000}, Orion +[04,10], {00288}, Infinity +[04,11], {00636}, Halo +[05,01], {00395}, Blaze +[05,02], {00403}, Mirage +[05,03], {00995}, Horizon +[05,04], {00426}, Radiance +[05,05], {00991}, Eclipse +[05,06], {00777}, Velocity +[05,07], {00202}, Circuit +[05,08], {00448}, Axis +[05,09], {00822}, Shard +[05,10], {00676}, Glider +[05,11], {00806}, Ember +[06,01], {00858}, Arcadia +[06,02], {00759}, Comet +[06,03], {00243}, Shadow +[06,04], {00611}, Nova +[06,05], {00178}, Apollo +[06,06], {00000}, UNUSED +[06,07], {00908}, Nexus +[06,08], {00670}, Meteor +[06,09], {00956}, Vortex +[06,10], {00259}, Zenith +[06,11], {00345}, Vertex +[07,01], {00228}, Eclipse +[07,02], {00693}, Phoenix +[07,03], {00226}, Infinity +[07,04], {00655}, Orion +[07,05], {00827}, Cosmos +[07,06], {00000}, UNUSED +[07,07], {00000}, UNUSED +[07,08], {00167}, Crystal +[07,09], {00246}, Drift +[07,10], {00223}, Eclipse +[07,11], {00154}, Stardust +[08,01], {00192}, Spectrum +[08,02], {00995}, Odyssey +[08,03], {00597}, Radiance +[08,04], {00654}, Lunar +[08,05], {00369}, Infinity +[08,06], {00000}, UNUSED +[08,07], {00000}, UNUSED +[08,08], {00000}, UNUSED +[08,09], {00939}, Velocity +[08,10], {00261}, Echo +[08,11], {00294}, Zephyr diff --git a/Data/manifests/83Containers.txt b/Data/manifests/83Containers.txt index 2a85473..b05da6c 100644 --- a/Data/manifests/83Containers.txt +++ b/Data/manifests/83Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00976}, Eclipse -[1,02], {00580}, Velocity -[1,03], {00134}, Blaze -[1,04], {00869}, Phoenix -[1,05], {00495}, Glider -[1,06], {00420}, Velocity -[1,07], {00795}, Horizon -[1,08], {00120}, Titan -[1,09], {00234}, Comet -[1,10], {00365}, Infinity -[1,11], {00253}, Twilight -[2,01], {00282}, Neptune -[2,02], {00720}, Glider -[2,03], {00869}, Radiance -[2,04], {00266}, Arcadia -[2,05], {00188}, Crystal -[2,06], {00722}, Velocity -[2,07], {00710}, Tesla -[2,08], {00525}, Echo -[2,09], {00756}, Titan -[2,10], {00524}, Horizon -[2,11], {00617}, Tectonic -[3,01], {00722}, Sol -[3,02], {00273}, Vertex -[3,03], {00644}, Titan -[3,04], {00808}, Shadow -[3,05], {00789}, Horizon -[3,06], {00187}, Nexus -[3,07], {00576}, Nexus -[3,08], {00763}, Everest -[3,09], {00728}, Solstice -[3,10], {00368}, Tesla -[3,11], {00397}, Apollo -[4,01], {00703}, Voyager -[4,02], {00690}, Inferno -[4,03], {00681}, Forge -[4,04], {00481}, Inferno -[4,05], {00710}, Echo -[4,06], {00643}, Voyager -[4,07], {00881}, Circuit -[4,08], {00195}, Vertex -[4,09], {00679}, Nimbus -[4,10], {00636}, Comet -[4,11], {00868}, Borealis -[5,01], {00739}, Zephyr -[5,02], {00777}, Solstice -[5,03], {00561}, Nova -[5,04], {00269}, Lunar -[5,05], {00612}, Everest -[5,06], {00324}, Prism -[5,07], {00100}, Polaris -[5,08], {00571}, Shard -[5,09], {00848}, Comet -[5,10], {00691}, Nimbus -[5,11], {00377}, Sol -[6,01], {00634}, Matrix -[6,02], {00000}, UNUSED -[6,03], {00338}, Voyager -[6,04], {00864}, Arcadia -[6,05], {00537}, Cascade -[6,06], {00459}, Aero -[6,07], {00439}, Odyssey -[6,08], {00771}, Titan -[6,09], {00152}, Borealis -[6,10], {00712}, Spectrum -[6,11], {00639}, Velocity -[7,01], {00638}, Nexus -[7,02], {00000}, UNUSED -[7,03], {00000}, UNUSED -[7,04], {00882}, Velocity -[7,05], {00289}, Axis -[7,06], {00515}, Zephyr -[7,07], {00925}, Tesla -[7,08], {00719}, Glider -[7,09], {00212}, Eclipse -[7,10], {00926}, Eclipse -[7,11], {00164}, Forge -[8,01], {00391}, Infinity -[8,02], {00000}, UNUSED -[8,03], {00000}, UNUSED -[8,04], {00617}, Infinity -[8,05], {00354}, Crystal -[8,06], {00630}, Sol -[8,07], {00232}, Mirage -[8,08], {00256}, Prism -[8,09], {00899}, Zephyr -[8,10], {00443}, Glacier -[8,11], {00710}, Nova +[01,01], {00976}, Eclipse +[01,02], {00580}, Velocity +[01,03], {00134}, Blaze +[01,04], {00869}, Phoenix +[01,05], {00495}, Glider +[01,06], {00420}, Velocity +[01,07], {00795}, Horizon +[01,08], {00120}, Titan +[01,09], {00234}, Comet +[01,10], {00365}, Infinity +[01,11], {00253}, Twilight +[02,01], {00282}, Neptune +[02,02], {00720}, Glider +[02,03], {00869}, Radiance +[02,04], {00266}, Arcadia +[02,05], {00188}, Crystal +[02,06], {00722}, Velocity +[02,07], {00710}, Tesla +[02,08], {00525}, Echo +[02,09], {00756}, Titan +[02,10], {00524}, Horizon +[02,11], {00617}, Tectonic +[03,01], {00722}, Sol +[03,02], {00273}, Vertex +[03,03], {00644}, Titan +[03,04], {00808}, Shadow +[03,05], {00789}, Horizon +[03,06], {00187}, Nexus +[03,07], {00576}, Nexus +[03,08], {00763}, Everest +[03,09], {00728}, Solstice +[03,10], {00368}, Tesla +[03,11], {00397}, Apollo +[04,01], {00703}, Voyager +[04,02], {00690}, Inferno +[04,03], {00681}, Forge +[04,04], {00481}, Inferno +[04,05], {00710}, Echo +[04,06], {00643}, Voyager +[04,07], {00881}, Circuit +[04,08], {00195}, Vertex +[04,09], {00679}, Nimbus +[04,10], {00636}, Comet +[04,11], {00868}, Borealis +[05,01], {00739}, Zephyr +[05,02], {00777}, Solstice +[05,03], {00561}, Nova +[05,04], {00269}, Lunar +[05,05], {00612}, Everest +[05,06], {00324}, Prism +[05,07], {00100}, Polaris +[05,08], {00571}, Shard +[05,09], {00848}, Comet +[05,10], {00691}, Nimbus +[05,11], {00377}, Sol +[06,01], {00634}, Matrix +[06,02], {00000}, UNUSED +[06,03], {00338}, Voyager +[06,04], {00864}, Arcadia +[06,05], {00537}, Cascade +[06,06], {00459}, Aero +[06,07], {00439}, Odyssey +[06,08], {00771}, Titan +[06,09], {00152}, Borealis +[06,10], {00712}, Spectrum +[06,11], {00639}, Velocity +[07,01], {00638}, Nexus +[07,02], {00000}, UNUSED +[07,03], {00000}, UNUSED +[07,04], {00882}, Velocity +[07,05], {00289}, Axis +[07,06], {00515}, Zephyr +[07,07], {00925}, Tesla +[07,08], {00719}, Glider +[07,09], {00212}, Eclipse +[07,10], {00926}, Eclipse +[07,11], {00164}, Forge +[08,01], {00391}, Infinity +[08,02], {00000}, UNUSED +[08,03], {00000}, UNUSED +[08,04], {00617}, Infinity +[08,05], {00354}, Crystal +[08,06], {00630}, Sol +[08,07], {00232}, Mirage +[08,08], {00256}, Prism +[08,09], {00899}, Zephyr +[08,10], {00443}, Glacier +[08,11], {00710}, Nova diff --git a/Data/manifests/84Containers.txt b/Data/manifests/84Containers.txt index 3630f86..6287364 100644 --- a/Data/manifests/84Containers.txt +++ b/Data/manifests/84Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00611}, Ember -[1,02], {00587}, Neptune -[1,03], {00227}, Tectonic -[1,04], {00557}, Vertex -[1,05], {00463}, Apollo -[1,06], {00131}, Echo -[1,07], {00701}, Aero -[1,08], {00541}, Cyclone -[1,09], {00214}, Zenith -[1,10], {00733}, Nova -[1,11], {00465}, Sol -[2,01], {00797}, Spectrum -[2,02], {00876}, Vertex -[2,03], {00642}, Atlas -[2,04], {00168}, Prism -[2,05], {00762}, Sol -[2,06], {00787}, Twilight -[2,07], {00277}, Zephyr -[2,08], {00875}, Vortex -[2,09], {00205}, Echo -[2,10], {00989}, Everest -[2,11], {00772}, Nova -[3,01], {00197}, Singularity -[3,02], {00472}, Cascade -[3,03], {00684}, Tesla -[3,04], {00294}, Horizon -[3,05], {00443}, Zenith -[3,06], {00622}, Zephyr -[3,07], {00525}, Echo -[3,08], {00200}, Zephyr -[3,09], {00636}, Aurora -[3,10], {00482}, Arcadia -[3,11], {00486}, Eclipse -[4,01], {00181}, Cyclone -[4,02], {00610}, Phoenix -[4,03], {00871}, Axis -[4,04], {00494}, Nimbus -[4,05], {00970}, Shadow -[4,06], {00898}, Meteor -[4,07], {00432}, Prism -[4,08], {00557}, Sol -[4,09], {00113}, Horizon -[4,10], {00181}, Cyclone -[4,11], {00151}, Phoenix -[5,01], {00431}, Halo -[5,02], {00816}, Halo -[5,03], {00185}, Zephyr -[5,04], {00151}, Comet -[5,05], {00760}, Eclipse -[5,06], {00133}, Velocity -[5,07], {00545}, Glacier -[5,08], {00267}, Eclipse -[5,09], {00985}, Tectonic -[5,10], {00126}, Blaze -[5,11], {00610}, Tectonic -[6,01], {00218}, Vertex -[6,02], {00760}, Circuit -[6,03], {00267}, Apollo -[6,04], {00865}, Tesla -[6,05], {00285}, Meteor -[6,06], {00165}, Glacier -[6,07], {00289}, Dynamo -[6,08], {00284}, Eclipse -[6,09], {00739}, Everest -[6,10], {00645}, Cascade -[6,11], {00114}, Prism -[7,01], {00733}, Singularity -[7,02], {00621}, Vortex -[7,03], {00817}, Lunar -[7,04], {00799}, Zenith -[7,05], {00000}, UNUSED -[7,06], {00640}, Quantum -[7,07], {00605}, Zenith -[7,08], {00412}, Gravity -[7,09], {00859}, Cyclone -[7,10], {00222}, Lunar -[7,11], {00982}, Nimbus -[8,01], {00000}, UNUSED -[8,02], {00560}, Titan -[8,03], {00214}, Echo -[8,04], {00305}, Velocity -[8,05], {00000}, UNUSED -[8,06], {00508}, Forge -[8,07], {00485}, Axis -[8,08], {00837}, Cosmos -[8,09], {00938}, Solstice -[8,10], {00636}, Solstice -[8,11], {00000}, UNUSED +[01,01], {00611}, Ember +[01,02], {00587}, Neptune +[01,03], {00227}, Tectonic +[01,04], {00557}, Vertex +[01,05], {00463}, Apollo +[01,06], {00131}, Echo +[01,07], {00701}, Aero +[01,08], {00541}, Cyclone +[01,09], {00214}, Zenith +[01,10], {00733}, Nova +[01,11], {00465}, Sol +[02,01], {00797}, Spectrum +[02,02], {00876}, Vertex +[02,03], {00642}, Atlas +[02,04], {00168}, Prism +[02,05], {00762}, Sol +[02,06], {00787}, Twilight +[02,07], {00277}, Zephyr +[02,08], {00875}, Vortex +[02,09], {00205}, Echo +[02,10], {00989}, Everest +[02,11], {00772}, Nova +[03,01], {00197}, Singularity +[03,02], {00472}, Cascade +[03,03], {00684}, Tesla +[03,04], {00294}, Horizon +[03,05], {00443}, Zenith +[03,06], {00622}, Zephyr +[03,07], {00525}, Echo +[03,08], {00200}, Zephyr +[03,09], {00636}, Aurora +[03,10], {00482}, Arcadia +[03,11], {00486}, Eclipse +[04,01], {00181}, Cyclone +[04,02], {00610}, Phoenix +[04,03], {00871}, Axis +[04,04], {00494}, Nimbus +[04,05], {00970}, Shadow +[04,06], {00898}, Meteor +[04,07], {00432}, Prism +[04,08], {00557}, Sol +[04,09], {00113}, Horizon +[04,10], {00181}, Cyclone +[04,11], {00151}, Phoenix +[05,01], {00431}, Halo +[05,02], {00816}, Halo +[05,03], {00185}, Zephyr +[05,04], {00151}, Comet +[05,05], {00760}, Eclipse +[05,06], {00133}, Velocity +[05,07], {00545}, Glacier +[05,08], {00267}, Eclipse +[05,09], {00985}, Tectonic +[05,10], {00126}, Blaze +[05,11], {00610}, Tectonic +[06,01], {00218}, Vertex +[06,02], {00760}, Circuit +[06,03], {00267}, Apollo +[06,04], {00865}, Tesla +[06,05], {00285}, Meteor +[06,06], {00165}, Glacier +[06,07], {00289}, Dynamo +[06,08], {00284}, Eclipse +[06,09], {00739}, Everest +[06,10], {00645}, Cascade +[06,11], {00114}, Prism +[07,01], {00733}, Singularity +[07,02], {00621}, Vortex +[07,03], {00817}, Lunar +[07,04], {00799}, Zenith +[07,05], {00000}, UNUSED +[07,06], {00640}, Quantum +[07,07], {00605}, Zenith +[07,08], {00412}, Gravity +[07,09], {00859}, Cyclone +[07,10], {00222}, Lunar +[07,11], {00982}, Nimbus +[08,01], {00000}, UNUSED +[08,02], {00560}, Titan +[08,03], {00214}, Echo +[08,04], {00305}, Velocity +[08,05], {00000}, UNUSED +[08,06], {00508}, Forge +[08,07], {00485}, Axis +[08,08], {00837}, Cosmos +[08,09], {00938}, Solstice +[08,10], {00636}, Solstice +[08,11], {00000}, UNUSED diff --git a/Data/manifests/85Containers.txt b/Data/manifests/85Containers.txt index 4f68c09..842ae12 100644 --- a/Data/manifests/85Containers.txt +++ b/Data/manifests/85Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00602}, Aurora -[1,02], {00721}, Infinity -[1,03], {00625}, Quantum -[1,04], {00287}, Glider -[1,05], {00480}, Vertex -[1,06], {00288}, Velocity -[1,07], {00356}, Crystal -[1,08], {00887}, Prism -[1,09], {00532}, Crystal -[1,10], {00909}, Mirage -[1,11], {00333}, Prism -[2,01], {00917}, Apollo -[2,02], {00294}, Zephyr -[2,03], {00228}, Dynamo -[2,04], {00571}, Neptune -[2,05], {00129}, Odyssey -[2,06], {00319}, Zenith -[2,07], {00592}, Spectrum -[2,08], {00617}, Meteor -[2,09], {00953}, Spectrum -[2,10], {00246}, Odyssey -[2,11], {00828}, Phoenix -[3,01], {00527}, Cosmos -[3,02], {00986}, Inferno -[3,03], {00889}, Nova -[3,04], {00723}, Shard -[3,05], {00405}, Borealis -[3,06], {00472}, Tectonic -[3,07], {00107}, Eclipse -[3,08], {00120}, Quantum -[3,09], {00673}, Arcadia -[3,10], {00677}, Cyclone -[3,11], {00977}, Prism -[4,01], {00434}, Circuit -[4,02], {00260}, Horizon -[4,03], {00681}, Orion -[4,04], {00601}, Cosmos -[4,05], {00426}, Horizon -[4,06], {00366}, Horizon -[4,07], {00323}, Drift -[4,08], {00893}, Infinity -[4,09], {00752}, Halo -[4,10], {00551}, Radiance -[4,11], {00409}, Echo -[5,01], {00625}, Horizon -[5,02], {01000}, Comet -[5,03], {00601}, Apollo -[5,04], {00290}, Stardust -[5,05], {00272}, Tectonic -[5,06], {00672}, Orion -[5,07], {00714}, Spectrum -[5,08], {00695}, Mirage -[5,09], {00440}, Phoenix -[5,10], {00591}, Gravity -[5,11], {00167}, Cascade -[6,01], {00716}, Crystal -[6,02], {00834}, Halo -[6,03], {00259}, Cosmos -[6,04], {00765}, Voyager -[6,05], {00833}, Orion -[6,06], {00640}, Twilight -[6,07], {00420}, Horizon -[6,08], {00581}, Matrix -[6,09], {00278}, Infinity -[6,10], {00759}, Meteor -[6,11], {00951}, Neptune -[7,01], {00279}, Beacon -[7,02], {00281}, Horizon -[7,03], {00581}, Solstice -[7,04], {00762}, Echo -[7,05], {00356}, Nexus -[7,06], {00206}, Titan -[7,07], {00925}, Vortex -[7,08], {00765}, Horizon -[7,09], {00998}, Circuit -[7,10], {00000}, UNUSED -[7,11], {00980}, Solstice -[8,01], {00452}, Arcadia -[8,02], {00299}, Zenith -[8,03], {00190}, Aero -[8,04], {00456}, Radiance -[8,05], {00631}, Eclipse -[8,06], {00254}, Aurora -[8,07], {00613}, Nova -[8,08], {00000}, UNUSED -[8,09], {00734}, Cyclone -[8,10], {00000}, UNUSED -[8,11], {00187}, Meteor +[01,01], {00602}, Aurora +[01,02], {00721}, Infinity +[01,03], {00625}, Quantum +[01,04], {00287}, Glider +[01,05], {00480}, Vertex +[01,06], {00288}, Velocity +[01,07], {00356}, Crystal +[01,08], {00887}, Prism +[01,09], {00532}, Crystal +[01,10], {00909}, Mirage +[01,11], {00333}, Prism +[02,01], {00917}, Apollo +[02,02], {00294}, Zephyr +[02,03], {00228}, Dynamo +[02,04], {00571}, Neptune +[02,05], {00129}, Odyssey +[02,06], {00319}, Zenith +[02,07], {00592}, Spectrum +[02,08], {00617}, Meteor +[02,09], {00953}, Spectrum +[02,10], {00246}, Odyssey +[02,11], {00828}, Phoenix +[03,01], {00527}, Cosmos +[03,02], {00986}, Inferno +[03,03], {00889}, Nova +[03,04], {00723}, Shard +[03,05], {00405}, Borealis +[03,06], {00472}, Tectonic +[03,07], {00107}, Eclipse +[03,08], {00120}, Quantum +[03,09], {00673}, Arcadia +[03,10], {00677}, Cyclone +[03,11], {00977}, Prism +[04,01], {00434}, Circuit +[04,02], {00260}, Horizon +[04,03], {00681}, Orion +[04,04], {00601}, Cosmos +[04,05], {00426}, Horizon +[04,06], {00366}, Horizon +[04,07], {00323}, Drift +[04,08], {00893}, Infinity +[04,09], {00752}, Halo +[04,10], {00551}, Radiance +[04,11], {00409}, Echo +[05,01], {00625}, Horizon +[05,02], {01000}, Comet +[05,03], {00601}, Apollo +[05,04], {00290}, Stardust +[05,05], {00272}, Tectonic +[05,06], {00672}, Orion +[05,07], {00714}, Spectrum +[05,08], {00695}, Mirage +[05,09], {00440}, Phoenix +[05,10], {00591}, Gravity +[05,11], {00167}, Cascade +[06,01], {00716}, Crystal +[06,02], {00834}, Halo +[06,03], {00259}, Cosmos +[06,04], {00765}, Voyager +[06,05], {00833}, Orion +[06,06], {00640}, Twilight +[06,07], {00420}, Horizon +[06,08], {00581}, Matrix +[06,09], {00278}, Infinity +[06,10], {00759}, Meteor +[06,11], {00951}, Neptune +[07,01], {00279}, Beacon +[07,02], {00281}, Horizon +[07,03], {00581}, Solstice +[07,04], {00762}, Echo +[07,05], {00356}, Nexus +[07,06], {00206}, Titan +[07,07], {00925}, Vortex +[07,08], {00765}, Horizon +[07,09], {00998}, Circuit +[07,10], {00000}, UNUSED +[07,11], {00980}, Solstice +[08,01], {00452}, Arcadia +[08,02], {00299}, Zenith +[08,03], {00190}, Aero +[08,04], {00456}, Radiance +[08,05], {00631}, Eclipse +[08,06], {00254}, Aurora +[08,07], {00613}, Nova +[08,08], {00000}, UNUSED +[08,09], {00734}, Cyclone +[08,10], {00000}, UNUSED +[08,11], {00187}, Meteor diff --git a/Data/manifests/86Containers.txt b/Data/manifests/86Containers.txt index 72b8e3a..1a9605d 100644 --- a/Data/manifests/86Containers.txt +++ b/Data/manifests/86Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00212}, Apollo -[1,02], {00543}, Nova -[1,03], {00664}, Forge -[1,04], {00516}, Crystal -[1,05], {00796}, Crystal -[1,06], {00592}, Eclipse -[1,07], {00603}, Voyager -[1,08], {00113}, Everest -[1,09], {00991}, Zenith -[1,10], {00583}, Everest -[1,11], {00548}, Tesla -[2,01], {00756}, Cosmos -[2,02], {00700}, Odyssey -[2,03], {00851}, Meteor -[2,04], {00241}, Echo -[2,05], {00747}, Eclipse -[2,06], {00703}, Forge -[2,07], {00835}, Matrix -[2,08], {00925}, Cascade -[2,09], {00965}, Odyssey -[2,10], {00969}, Mirage -[2,11], {00565}, Horizon -[3,01], {00985}, Cascade -[3,02], {00109}, Inferno -[3,03], {00493}, Neptune -[3,04], {00252}, Cascade -[3,05], {00734}, Quantum -[3,06], {00949}, Polaris -[3,07], {00365}, Echo -[3,08], {00114}, Blaze -[3,09], {00819}, Matrix -[3,10], {00136}, Blaze -[3,11], {00578}, Horizon -[4,01], {00614}, Drift -[4,02], {00107}, Odyssey -[4,03], {00123}, Eclipse -[4,04], {00945}, Ember -[4,05], {00543}, Vortex -[4,06], {00953}, Spectrum -[4,07], {00461}, Dynamo -[4,08], {00461}, Mirage -[4,09], {00147}, Lunar -[4,10], {00945}, Halo -[4,11], {00382}, Voyager -[5,01], {00675}, Odyssey -[5,02], {00387}, Spectrum -[5,03], {00425}, Odyssey -[5,04], {00534}, Phoenix -[5,05], {00431}, Dynamo -[5,06], {00237}, Nexus -[5,07], {00716}, Radiance -[5,08], {00423}, Meteor -[5,09], {00617}, Cascade -[5,10], {00214}, Zephyr -[5,11], {00170}, Eclipse -[6,01], {00370}, Vertex -[6,02], {00148}, Radiance -[6,03], {00720}, Singularity -[6,04], {00768}, Matrix -[6,05], {00910}, Eclipse -[6,06], {00426}, Nova -[6,07], {00602}, Shadow -[6,08], {00197}, Phoenix -[6,09], {00316}, Circuit -[6,10], {00408}, Everest -[6,11], {00544}, Eclipse -[7,01], {00783}, Shard -[7,02], {00239}, Halo -[7,03], {00000}, UNUSED -[7,04], {00472}, Solstice -[7,05], {00795}, Echo -[7,06], {00946}, Echo -[7,07], {00460}, Meteor -[7,08], {00646}, Comet -[7,09], {00258}, Glacier -[7,10], {00184}, Cyclone -[7,11], {00913}, Forge -[8,01], {00490}, Eclipse -[8,02], {00910}, Echo -[8,03], {00000}, UNUSED -[8,04], {00744}, Axis -[8,05], {00712}, Lunar -[8,06], {00961}, Cosmos -[8,07], {00797}, Apollo -[8,08], {00963}, Spectrum -[8,09], {00855}, Neptune -[8,10], {00624}, Titan -[8,11], {00652}, Ember +[01,01], {00212}, Apollo +[01,02], {00543}, Nova +[01,03], {00664}, Forge +[01,04], {00516}, Crystal +[01,05], {00796}, Crystal +[01,06], {00592}, Eclipse +[01,07], {00603}, Voyager +[01,08], {00113}, Everest +[01,09], {00991}, Zenith +[01,10], {00583}, Everest +[01,11], {00548}, Tesla +[02,01], {00756}, Cosmos +[02,02], {00700}, Odyssey +[02,03], {00851}, Meteor +[02,04], {00241}, Echo +[02,05], {00747}, Eclipse +[02,06], {00703}, Forge +[02,07], {00835}, Matrix +[02,08], {00925}, Cascade +[02,09], {00965}, Odyssey +[02,10], {00969}, Mirage +[02,11], {00565}, Horizon +[03,01], {00985}, Cascade +[03,02], {00109}, Inferno +[03,03], {00493}, Neptune +[03,04], {00252}, Cascade +[03,05], {00734}, Quantum +[03,06], {00949}, Polaris +[03,07], {00365}, Echo +[03,08], {00114}, Blaze +[03,09], {00819}, Matrix +[03,10], {00136}, Blaze +[03,11], {00578}, Horizon +[04,01], {00614}, Drift +[04,02], {00107}, Odyssey +[04,03], {00123}, Eclipse +[04,04], {00945}, Ember +[04,05], {00543}, Vortex +[04,06], {00953}, Spectrum +[04,07], {00461}, Dynamo +[04,08], {00461}, Mirage +[04,09], {00147}, Lunar +[04,10], {00945}, Halo +[04,11], {00382}, Voyager +[05,01], {00675}, Odyssey +[05,02], {00387}, Spectrum +[05,03], {00425}, Odyssey +[05,04], {00534}, Phoenix +[05,05], {00431}, Dynamo +[05,06], {00237}, Nexus +[05,07], {00716}, Radiance +[05,08], {00423}, Meteor +[05,09], {00617}, Cascade +[05,10], {00214}, Zephyr +[05,11], {00170}, Eclipse +[06,01], {00370}, Vertex +[06,02], {00148}, Radiance +[06,03], {00720}, Singularity +[06,04], {00768}, Matrix +[06,05], {00910}, Eclipse +[06,06], {00426}, Nova +[06,07], {00602}, Shadow +[06,08], {00197}, Phoenix +[06,09], {00316}, Circuit +[06,10], {00408}, Everest +[06,11], {00544}, Eclipse +[07,01], {00783}, Shard +[07,02], {00239}, Halo +[07,03], {00000}, UNUSED +[07,04], {00472}, Solstice +[07,05], {00795}, Echo +[07,06], {00946}, Echo +[07,07], {00460}, Meteor +[07,08], {00646}, Comet +[07,09], {00258}, Glacier +[07,10], {00184}, Cyclone +[07,11], {00913}, Forge +[08,01], {00490}, Eclipse +[08,02], {00910}, Echo +[08,03], {00000}, UNUSED +[08,04], {00744}, Axis +[08,05], {00712}, Lunar +[08,06], {00961}, Cosmos +[08,07], {00797}, Apollo +[08,08], {00963}, Spectrum +[08,09], {00855}, Neptune +[08,10], {00624}, Titan +[08,11], {00652}, Ember diff --git a/Data/manifests/87Containers.txt b/Data/manifests/87Containers.txt index 9f3cbf7..510c59a 100644 --- a/Data/manifests/87Containers.txt +++ b/Data/manifests/87Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00964}, Forge -[1,02], {00301}, Cyclone -[1,03], {00196}, Vortex -[1,04], {00415}, Atlas -[1,05], {00396}, Orion -[1,06], {00835}, Crystal -[1,07], {00511}, Nimbus -[1,08], {00740}, Horizon -[1,09], {00693}, Cyclone -[1,10], {00489}, Tesla -[1,11], {00405}, Spectrum -[2,01], {00354}, Polaris -[2,02], {00800}, Zenith -[2,03], {00888}, Phoenix -[2,04], {00588}, Cosmos -[2,05], {00146}, Nexus -[2,06], {00355}, Mirage -[2,07], {00345}, Zenith -[2,08], {00862}, Horizon -[2,09], {00953}, Odyssey -[2,10], {00403}, Forge -[2,11], {00330}, Nexus -[3,01], {00226}, Nova -[3,02], {00404}, Inferno -[3,03], {00822}, Axis -[3,04], {00400}, Beacon -[3,05], {00204}, Echo -[3,06], {00749}, Cyclone -[3,07], {00909}, Singularity -[3,08], {00204}, Echo -[3,09], {00915}, Eclipse -[3,10], {00393}, Tectonic -[3,11], {00930}, Odyssey -[4,01], {00430}, Polaris -[4,02], {00219}, Nova -[4,03], {00926}, Echo -[4,04], {00171}, Nimbus -[4,05], {00645}, Solstice -[4,06], {00646}, Comet -[4,07], {00906}, Sol -[4,08], {00203}, Voyager -[4,09], {00736}, Spectrum -[4,10], {00886}, Solstice -[4,11], {00797}, Atlas -[5,01], {00739}, Comet -[5,02], {00861}, Shadow -[5,03], {00308}, Orion -[5,04], {00752}, Eclipse -[5,05], {00213}, Polaris -[5,06], {00840}, Dynamo -[5,07], {00329}, Inferno -[5,08], {00346}, Titan -[5,09], {00584}, Forge -[5,10], {00266}, Radiance -[5,11], {00678}, Nimbus -[6,01], {00231}, Zenith -[6,02], {00872}, Singularity -[6,03], {00721}, Tectonic -[6,04], {00944}, Horizon -[6,05], {00647}, Tesla -[6,06], {00214}, Axis -[6,07], {00341}, Polaris -[6,08], {00699}, Polaris -[6,09], {00698}, Radiance -[6,10], {00536}, Atlas -[6,11], {00785}, Apollo -[7,01], {00721}, Inferno -[7,02], {00295}, Inferno -[7,03], {00585}, Axis -[7,04], {00546}, Solstice -[7,05], {00394}, Vortex -[7,06], {00890}, Nimbus -[7,07], {00107}, Titan -[7,08], {00319}, Zenith -[7,09], {00950}, Velocity -[7,10], {00895}, Meteor -[7,11], {00189}, Zephyr -[8,01], {00512}, Glacier -[8,02], {00196}, Cosmos -[8,03], {00828}, Velocity -[8,04], {00924}, Drift -[8,05], {00773}, Comet -[8,06], {00476}, Mirage -[8,07], {00297}, Radiance -[8,08], {00571}, Circuit -[8,09], {00690}, Phoenix -[8,10], {00753}, Arcadia -[8,11], {00000}, UNUSED +[01,01], {00964}, Forge +[01,02], {00301}, Cyclone +[01,03], {00196}, Vortex +[01,04], {00415}, Atlas +[01,05], {00396}, Orion +[01,06], {00835}, Crystal +[01,07], {00511}, Nimbus +[01,08], {00740}, Horizon +[01,09], {00693}, Cyclone +[01,10], {00489}, Tesla +[01,11], {00405}, Spectrum +[02,01], {00354}, Polaris +[02,02], {00800}, Zenith +[02,03], {00888}, Phoenix +[02,04], {00588}, Cosmos +[02,05], {00146}, Nexus +[02,06], {00355}, Mirage +[02,07], {00345}, Zenith +[02,08], {00862}, Horizon +[02,09], {00953}, Odyssey +[02,10], {00403}, Forge +[02,11], {00330}, Nexus +[03,01], {00226}, Nova +[03,02], {00404}, Inferno +[03,03], {00822}, Axis +[03,04], {00400}, Beacon +[03,05], {00204}, Echo +[03,06], {00749}, Cyclone +[03,07], {00909}, Singularity +[03,08], {00204}, Echo +[03,09], {00915}, Eclipse +[03,10], {00393}, Tectonic +[03,11], {00930}, Odyssey +[04,01], {00430}, Polaris +[04,02], {00219}, Nova +[04,03], {00926}, Echo +[04,04], {00171}, Nimbus +[04,05], {00645}, Solstice +[04,06], {00646}, Comet +[04,07], {00906}, Sol +[04,08], {00203}, Voyager +[04,09], {00736}, Spectrum +[04,10], {00886}, Solstice +[04,11], {00797}, Atlas +[05,01], {00739}, Comet +[05,02], {00861}, Shadow +[05,03], {00308}, Orion +[05,04], {00752}, Eclipse +[05,05], {00213}, Polaris +[05,06], {00840}, Dynamo +[05,07], {00329}, Inferno +[05,08], {00346}, Titan +[05,09], {00584}, Forge +[05,10], {00266}, Radiance +[05,11], {00678}, Nimbus +[06,01], {00231}, Zenith +[06,02], {00872}, Singularity +[06,03], {00721}, Tectonic +[06,04], {00944}, Horizon +[06,05], {00647}, Tesla +[06,06], {00214}, Axis +[06,07], {00341}, Polaris +[06,08], {00699}, Polaris +[06,09], {00698}, Radiance +[06,10], {00536}, Atlas +[06,11], {00785}, Apollo +[07,01], {00721}, Inferno +[07,02], {00295}, Inferno +[07,03], {00585}, Axis +[07,04], {00546}, Solstice +[07,05], {00394}, Vortex +[07,06], {00890}, Nimbus +[07,07], {00107}, Titan +[07,08], {00319}, Zenith +[07,09], {00950}, Velocity +[07,10], {00895}, Meteor +[07,11], {00189}, Zephyr +[08,01], {00512}, Glacier +[08,02], {00196}, Cosmos +[08,03], {00828}, Velocity +[08,04], {00924}, Drift +[08,05], {00773}, Comet +[08,06], {00476}, Mirage +[08,07], {00297}, Radiance +[08,08], {00571}, Circuit +[08,09], {00690}, Phoenix +[08,10], {00753}, Arcadia +[08,11], {00000}, UNUSED diff --git a/Data/manifests/88Containers.txt b/Data/manifests/88Containers.txt index caf147b..98ebfb8 100644 --- a/Data/manifests/88Containers.txt +++ b/Data/manifests/88Containers.txt @@ -1,88 +1,88 @@ -[1,01], {00884}, Vertex -[1,02], {00105}, Spectrum -[1,03], {00347}, Tesla -[1,04], {00190}, Blaze -[1,05], {00873}, Odyssey -[1,06], {00160}, Atlas -[1,07], {00554}, Singularity -[1,08], {00360}, Atlas -[1,09], {00516}, Ember -[1,10], {00134}, Cosmos -[1,11], {00272}, Ember -[2,01], {00153}, Nimbus -[2,02], {00867}, Velocity -[2,03], {00110}, Spectrum -[2,04], {00524}, Beacon -[2,05], {00236}, Zenith -[2,06], {00411}, Zephyr -[2,07], {00777}, Shard -[2,08], {00769}, Ember -[2,09], {00123}, Matrix -[2,10], {00289}, Stardust -[2,11], {00934}, Zenith -[3,01], {00607}, Phoenix -[3,02], {00906}, Singularity -[3,03], {00821}, Horizon -[3,04], {00583}, Twilight -[3,05], {00899}, Phoenix -[3,06], {00440}, Eclipse -[3,07], {00434}, Zephyr -[3,08], {00624}, Dynamo -[3,09], {00850}, Mirage -[3,10], {00320}, Twilight -[3,11], {00223}, Horizon -[4,01], {00196}, Stardust -[4,02], {00221}, Vertex -[4,03], {00446}, Echo -[4,04], {00237}, Vertex -[4,05], {00318}, Mirage -[4,06], {00910}, Circuit -[4,07], {00213}, Phoenix -[4,08], {00950}, Drift -[4,09], {00446}, Dynamo -[4,10], {00638}, Prism -[4,11], {00377}, Eclipse -[5,01], {00373}, Voyager -[5,02], {00187}, Solstice -[5,03], {00629}, Nimbus -[5,04], {00418}, Comet -[5,05], {00896}, Vertex -[5,06], {00375}, Odyssey -[5,07], {00437}, Dynamo -[5,08], {00521}, Forge -[5,09], {00310}, Cyclone -[5,10], {00124}, Atlas -[5,11], {00740}, Velocity -[6,01], {00604}, Mirage -[6,02], {00689}, Radiance -[6,03], {00480}, Vertex -[6,04], {00536}, Tesla -[6,05], {00135}, Zenith -[6,06], {00598}, Blaze -[6,07], {00832}, Circuit -[6,08], {00247}, Quantum -[6,09], {00344}, Twilight -[6,10], {00359}, Ember -[6,11], {00132}, Glider -[7,01], {00231}, Tectonic -[7,02], {00147}, Sol -[7,03], {00805}, Titan -[7,04], {00621}, Prism -[7,05], {00834}, Circuit -[7,06], {00848}, Cascade -[7,07], {00977}, Zenith -[7,08], {00655}, Echo -[7,09], {00730}, Circuit -[7,10], {00109}, Prism -[7,11], {00609}, Stardust -[8,01], {00648}, Ember -[8,02], {00476}, Horizon -[8,03], {00453}, Odyssey -[8,04], {00910}, Vertex -[8,05], {00460}, Vertex -[8,06], {00947}, Cosmos -[8,07], {00295}, Spectrum -[8,08], {00205}, Singularity -[8,09], {00846}, Orion -[8,10], {00565}, Cyclone -[8,11], {00529}, Meteor +[01,01], {00884}, Vertex +[01,02], {00105}, Spectrum +[01,03], {00347}, Tesla +[01,04], {00190}, Blaze +[01,05], {00873}, Odyssey +[01,06], {00160}, Atlas +[01,07], {00554}, Singularity +[01,08], {00360}, Atlas +[01,09], {00516}, Ember +[01,10], {00134}, Cosmos +[01,11], {00272}, Ember +[02,01], {00153}, Nimbus +[02,02], {00867}, Velocity +[02,03], {00110}, Spectrum +[02,04], {00524}, Beacon +[02,05], {00236}, Zenith +[02,06], {00411}, Zephyr +[02,07], {00777}, Shard +[02,08], {00769}, Ember +[02,09], {00123}, Matrix +[02,10], {00289}, Stardust +[02,11], {00934}, Zenith +[03,01], {00607}, Phoenix +[03,02], {00906}, Singularity +[03,03], {00821}, Horizon +[03,04], {00583}, Twilight +[03,05], {00899}, Phoenix +[03,06], {00440}, Eclipse +[03,07], {00434}, Zephyr +[03,08], {00624}, Dynamo +[03,09], {00850}, Mirage +[03,10], {00320}, Twilight +[03,11], {00223}, Horizon +[04,01], {00196}, Stardust +[04,02], {00221}, Vertex +[04,03], {00446}, Echo +[04,04], {00237}, Vertex +[04,05], {00318}, Mirage +[04,06], {00910}, Circuit +[04,07], {00213}, Phoenix +[04,08], {00950}, Drift +[04,09], {00446}, Dynamo +[04,10], {00638}, Prism +[04,11], {00377}, Eclipse +[05,01], {00373}, Voyager +[05,02], {00187}, Solstice +[05,03], {00629}, Nimbus +[05,04], {00418}, Comet +[05,05], {00896}, Vertex +[05,06], {00375}, Odyssey +[05,07], {00437}, Dynamo +[05,08], {00521}, Forge +[05,09], {00310}, Cyclone +[05,10], {00124}, Atlas +[05,11], {00740}, Velocity +[06,01], {00604}, Mirage +[06,02], {00689}, Radiance +[06,03], {00480}, Vertex +[06,04], {00536}, Tesla +[06,05], {00135}, Zenith +[06,06], {00598}, Blaze +[06,07], {00832}, Circuit +[06,08], {00247}, Quantum +[06,09], {00344}, Twilight +[06,10], {00359}, Ember +[06,11], {00132}, Glider +[07,01], {00231}, Tectonic +[07,02], {00147}, Sol +[07,03], {00805}, Titan +[07,04], {00621}, Prism +[07,05], {00834}, Circuit +[07,06], {00848}, Cascade +[07,07], {00977}, Zenith +[07,08], {00655}, Echo +[07,09], {00730}, Circuit +[07,10], {00109}, Prism +[07,11], {00609}, Stardust +[08,01], {00648}, Ember +[08,02], {00476}, Horizon +[08,03], {00453}, Odyssey +[08,04], {00910}, Vertex +[08,05], {00460}, Vertex +[08,06], {00947}, Cosmos +[08,07], {00295}, Spectrum +[08,08], {00205}, Singularity +[08,09], {00846}, Orion +[08,10], {00565}, Cyclone +[08,11], {00529}, Meteor diff --git a/Data/manifests/add0.py b/Data/manifests/add0.py new file mode 100644 index 0000000..291672a --- /dev/null +++ b/Data/manifests/add0.py @@ -0,0 +1,39 @@ +import os + +def add_zero_to_row_index(input_file, output_file): + """ + Reads a file, adds leading zeros to row indices, and writes the output to a new file. + + Args: + input_file (str): Path to the input file. + output_file (str): Path to the output file. + """ + with open(input_file, 'r') as infile, open(output_file, 'w') as outfile: + for line in infile: + # Match the format [row,col] + if line.startswith("[") and "," in line: + parts = line.split("]", 1) + row_col = parts[0][1:] # Extract row and column e.g., "1,01" + row, col = row_col.split(",") + new_row = row.zfill(2) # Add leading zero to the row + updated_line = f"[{new_row},{col}]{parts[1]}" + outfile.write(updated_line) + else: + outfile.write(line) # Write other lines unchanged + +# Process files from 20 to 89 +for i in range(20, 89): + input_file = f"{i}Containers.txt" + temp_file = f"{i}Containers_temp.txt" # Temporary file for writing + + try: + # Process the file and write to a temporary file + add_zero_to_row_index(input_file, temp_file) + + # Replace the original file with the processed file + os.replace(temp_file, input_file) + print(f"Processed: {input_file}") + except FileNotFoundError: + print(f"File not found: {input_file}, skipping...") + except Exception as e: + print(f"An error occurred with {input_file}: {e}") From 6092a831cecb0193a43143d997ad1a678ff67697 Mon Sep 17 00:00:00 2001 From: issy16 Date: Thu, 12 Dec 2024 19:14:26 -0800 Subject: [PATCH 6/8] test cases --- Data/manifests/add0.py | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 Data/manifests/add0.py diff --git a/Data/manifests/add0.py b/Data/manifests/add0.py deleted file mode 100644 index 291672a..0000000 --- a/Data/manifests/add0.py +++ /dev/null @@ -1,39 +0,0 @@ -import os - -def add_zero_to_row_index(input_file, output_file): - """ - Reads a file, adds leading zeros to row indices, and writes the output to a new file. - - Args: - input_file (str): Path to the input file. - output_file (str): Path to the output file. - """ - with open(input_file, 'r') as infile, open(output_file, 'w') as outfile: - for line in infile: - # Match the format [row,col] - if line.startswith("[") and "," in line: - parts = line.split("]", 1) - row_col = parts[0][1:] # Extract row and column e.g., "1,01" - row, col = row_col.split(",") - new_row = row.zfill(2) # Add leading zero to the row - updated_line = f"[{new_row},{col}]{parts[1]}" - outfile.write(updated_line) - else: - outfile.write(line) # Write other lines unchanged - -# Process files from 20 to 89 -for i in range(20, 89): - input_file = f"{i}Containers.txt" - temp_file = f"{i}Containers_temp.txt" # Temporary file for writing - - try: - # Process the file and write to a temporary file - add_zero_to_row_index(input_file, temp_file) - - # Replace the original file with the processed file - os.replace(temp_file, input_file) - print(f"Processed: {input_file}") - except FileNotFoundError: - print(f"File not found: {input_file}, skipping...") - except Exception as e: - print(f"An error occurred with {input_file}: {e}") From 40ab624a993966da779e860d314ae0482530344b Mon Sep 17 00:00:00 2001 From: issy16 Date: Thu, 12 Dec 2024 19:18:35 -0800 Subject: [PATCH 7/8] test cases --- Data/transferlist/case7.txt | 3 +++ generate_test.py | 20 ++++++++++++++++---- 2 files changed, 19 insertions(+), 4 deletions(-) create mode 100644 Data/transferlist/case7.txt diff --git a/Data/transferlist/case7.txt b/Data/transferlist/case7.txt new file mode 100644 index 0000000..4596953 --- /dev/null +++ b/Data/transferlist/case7.txt @@ -0,0 +1,3 @@ +unload, Halo +load, Ginger, 12 +unload, Twilight \ No newline at end of file diff --git a/generate_test.py b/generate_test.py index 6c8caa8..6758b62 100644 --- a/generate_test.py +++ b/generate_test.py @@ -37,7 +37,7 @@ def generate_grid(num_containers=40): formatted_grid = [] for row in range(rows): # Output starts from bottom row (index 0) for col in range(cols): - position = f"[{row + 1},{col + 1:02}]" # Convert to 1-based indexing + position = f"[{row + 1},{col + 1:02}]" if grid[row][col] == "UNUSED": formatted_grid.append(f"{position}, {{00000}}, UNUSED") else: @@ -45,11 +45,23 @@ def generate_grid(num_containers=40): return formatted_grid + +def add_zero_to_row_index(input_file, output_file): + + with open(input_file, 'r') as infile, open(output_file, 'w') as outfile: + for line in infile: + parts = line.split(',', 1) + if len(parts) > 1 and parts[0].strip().isdigit(): + new_row_index = parts[0].zfill(2) # Add leading zero + outfile.write(f"{new_row_index},{parts[1]}") + else: + outfile.write(line) + + # Generate and save the grid -for i in range(41, 90): # Generate grids for 21 to 30 containers +for i in range(20, 30): # Generate grids for 21 to 30 containers test_grid = generate_grid(num_containers=i) filename = f"{i}Containers.txt" # Use f-string to format the filename with open(filename, "w") as file: for line in test_grid: - file.write(line + "\n") - + file.write(line + "\n") \ No newline at end of file From 9f231947b852a40dba2bc844880e9521983629f3 Mon Sep 17 00:00:00 2001 From: issy16 Date: Thu, 12 Dec 2024 21:10:34 -0800 Subject: [PATCH 8/8] . --- test.py | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/test.py b/test.py index c311c27..c7d6afa 100644 --- a/test.py +++ b/test.py @@ -4,22 +4,19 @@ import time import signal -# Timeout exception class class TimeoutException(Exception): pass -# Timeout handler def timeout_handler(signum, frame): raise TimeoutException timeout_duration = 900 # 10 minutes -test_cases2 = [f"{i}Containers.txt" for i in range(41, 51)] # Generate filenames dynamically +test_cases2 = [f"{i}Containers.txt" for i in range(41, 51)] -# Iterate through balancing test cases for manifest_name in test_cases2: try: - # Set the timeout handler + signal.signal(signal.SIGALRM, timeout_handler) - signal.alarm(timeout_duration) # Start the timeout clock + signal.alarm(timeout_duration) manifest_data = upload_manifest(manifest_name) @@ -30,13 +27,11 @@ def timeout_handler(signum, frame): print(f"Balancing job selected for {manifest_name}.") start_time = time.time() - # Run the balance function balance_moves = pathfinder.balance() end_time = time.time() cost_time = end_time - start_time - # Display results print(f"\nBalance Moves for {manifest_name}:") for move in balance_moves: print(move[0])