diff --git a/Backend/Classes/Grid.py b/Backend/Classes/Grid.py index d081d19..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() @@ -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): """ @@ -382,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]) @@ -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 d36e2e5..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: @@ -317,7 +308,7 @@ def transfer_helper(self): while self.open_set: f_cost, g_cost, path,_, state = heapq.heappop(self.open_set) - + if not state.unload_list and not state.load_list: current_grid = self.start_state @@ -334,6 +325,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 @@ -345,8 +337,28 @@ def transfer_helper(self): return None def transfer_heuristic(self, state): - return 0 - + """Heuristic for transfer, return the estimate cost for the rest of the task to finish + 1. Sum the Manhattan distance for unloading to truck + 2. Sum the Manhattan distance for loading items from truck to the nearest available slots + """ + 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 = [] 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..12c27cd --- /dev/null +++ b/Data/manifests/20Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..c1a3260 --- /dev/null +++ b/Data/manifests/21Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..aa86e49 --- /dev/null +++ b/Data/manifests/22Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..0c71bcf --- /dev/null +++ b/Data/manifests/23Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..1623f96 --- /dev/null +++ b/Data/manifests/24Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..18645fd --- /dev/null +++ b/Data/manifests/26Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..eb5675e --- /dev/null +++ b/Data/manifests/27Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..e8cab3c --- /dev/null +++ b/Data/manifests/28Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..c35aeb4 --- /dev/null +++ b/Data/manifests/29Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..7d3ffd1 --- /dev/null +++ b/Data/manifests/30Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..f02b07c --- /dev/null +++ b/Data/manifests/31Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..24ae08e --- /dev/null +++ b/Data/manifests/32Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..2a0ff18 --- /dev/null +++ b/Data/manifests/33Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..384c450 --- /dev/null +++ b/Data/manifests/34Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..9f24265 --- /dev/null +++ b/Data/manifests/35Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..d8bf5da --- /dev/null +++ b/Data/manifests/36Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..938d732 --- /dev/null +++ b/Data/manifests/37Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..ed7e8a5 --- /dev/null +++ b/Data/manifests/38Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..712ad72 --- /dev/null +++ b/Data/manifests/39Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..0eb1435 --- /dev/null +++ b/Data/manifests/40Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..faa36b9 --- /dev/null +++ b/Data/manifests/41Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..4f3e421 --- /dev/null +++ b/Data/manifests/42Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..41cc67d --- /dev/null +++ b/Data/manifests/43Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..139adbb --- /dev/null +++ b/Data/manifests/44Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..2e5aebb --- /dev/null +++ b/Data/manifests/45Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..3fa8eb9 --- /dev/null +++ b/Data/manifests/46Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..e5c9169 --- /dev/null +++ b/Data/manifests/47Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..96b35be --- /dev/null +++ b/Data/manifests/48Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..b593661 --- /dev/null +++ b/Data/manifests/49Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..2339b5a --- /dev/null +++ b/Data/manifests/50Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..163684a --- /dev/null +++ b/Data/manifests/51Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..fb4bc7e --- /dev/null +++ b/Data/manifests/52Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..64bff61 --- /dev/null +++ b/Data/manifests/53Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..0e615f3 --- /dev/null +++ b/Data/manifests/54Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..cd09a9e --- /dev/null +++ b/Data/manifests/55Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..15ec870 --- /dev/null +++ b/Data/manifests/56Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..2012872 --- /dev/null +++ b/Data/manifests/57Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..f93a39a --- /dev/null +++ b/Data/manifests/58Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..b8e1278 --- /dev/null +++ b/Data/manifests/59Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..f496128 --- /dev/null +++ b/Data/manifests/60Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..b475aaf --- /dev/null +++ b/Data/manifests/61Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..c515385 --- /dev/null +++ b/Data/manifests/62Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..6a1c18d --- /dev/null +++ b/Data/manifests/63Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..c0a4171 --- /dev/null +++ b/Data/manifests/64Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..284ab4a --- /dev/null +++ b/Data/manifests/65Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..b9237ec --- /dev/null +++ b/Data/manifests/66Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..586c25e --- /dev/null +++ b/Data/manifests/67Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..692761b --- /dev/null +++ b/Data/manifests/68Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..ffb4c82 --- /dev/null +++ b/Data/manifests/69Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..816e230 --- /dev/null +++ b/Data/manifests/70Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..b120ad8 --- /dev/null +++ b/Data/manifests/71Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..ad09b3a --- /dev/null +++ b/Data/manifests/72Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..b053ac1 --- /dev/null +++ b/Data/manifests/73Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..7ec1905 --- /dev/null +++ b/Data/manifests/74Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..7509fda --- /dev/null +++ b/Data/manifests/75Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..648d56e --- /dev/null +++ b/Data/manifests/76Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..2bb5d51 --- /dev/null +++ b/Data/manifests/77Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..324d652 --- /dev/null +++ b/Data/manifests/78Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..ff947ed --- /dev/null +++ b/Data/manifests/79Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..1b30b7a --- /dev/null +++ b/Data/manifests/80Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..212bf75 --- /dev/null +++ b/Data/manifests/81Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..6e2d662 --- /dev/null +++ b/Data/manifests/82Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..b05da6c --- /dev/null +++ b/Data/manifests/83Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..6287364 --- /dev/null +++ b/Data/manifests/84Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..842ae12 --- /dev/null +++ b/Data/manifests/85Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..1a9605d --- /dev/null +++ b/Data/manifests/86Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..510c59a --- /dev/null +++ b/Data/manifests/87Containers.txt @@ -0,0 +1,88 @@ +[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 new file mode 100644 index 0000000..98ebfb8 --- /dev/null +++ b/Data/manifests/88Containers.txt @@ -0,0 +1,88 @@ +[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/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/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 95b551c..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: @@ -15,20 +16,28 @@ def main(): print("Quitting program.") break - i = 1 + i = 4 manifest_name = f"ShipCase{i}.txt" 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..6758b62 --- /dev/null +++ b/generate_test.py @@ -0,0 +1,67 @@ +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}]" + if grid[row][col] == "UNUSED": + formatted_grid.append(f"{position}, {{00000}}, UNUSED") + else: + formatted_grid.append(f"{position}, {grid[row][col]}") + + 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(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") \ No newline at end of file diff --git a/test.py b/test.py new file mode 100644 index 0000000..c7d6afa --- /dev/null +++ b/test.py @@ -0,0 +1,46 @@ +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 + +class TimeoutException(Exception): + pass + +def timeout_handler(signum, frame): + raise TimeoutException +timeout_duration = 900 # 10 minutes +test_cases2 = [f"{i}Containers.txt" for i in range(41, 51)] + +for manifest_name in test_cases2: + try: + + signal.signal(signal.SIGALRM, timeout_handler) + signal.alarm(timeout_duration) + + 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() + + balance_moves = pathfinder.balance() + + end_time = time.time() + cost_time = end_time - start_time + + 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